CE-1123 update exception status to be number (for qfc change)

This commit is contained in:
2024-04-15 12:52:59 -05:00
parent 4339f74c07
commit 731eab7136
7 changed files with 15 additions and 15 deletions

View File

@ -35,7 +35,7 @@ class Client
{
console.log(`Caught Exception: ${JSON.stringify(exception)}`);
if(exception && exception.status == "401" && Client.unauthorizedCallback)
if(exception && exception.status == 401 && Client.unauthorizedCallback)
{
console.log("This is a 401 - calling the unauthorized callback.");
Client.unauthorizedCallback();