CE-1115 change exception status to numbers per qfc, axios update

This commit is contained in:
2024-04-11 10:49:14 -05:00
parent 5e0e4c37bb
commit 53c3e4d078
6 changed files with 6 additions and 6 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();