default to int

This commit is contained in:
FrankRua 2022-04-14 11:19:20 -04:00
parent cfc3975684
commit 086be1ab6b

View file

@ -81,7 +81,7 @@ export function getSessionIdValue(){
}
/*
Gets value of skey cookie, returns empty string if not found.
Gets value of skey cookie, returns 0 if not found.
*/
export function getSessionKeyValue(){
const cookieValue = getCookieByName(cookieNames.SESSION_KEY);
@ -90,7 +90,7 @@ export function getSessionKeyValue(){
return cookieValue;
}
return '';
return 0;
}
/*