#7185 - Multiple toast errors when logout #521

Merged
jsegarra merged 4 commits from 7185_logoutErrorsToast into dev 2024-07-08 08:58:49 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 83fa9a15b9 - Show all commits

View File

@ -55,10 +55,10 @@ const onResponseError = (error) => {
}
if (session.isLoggedIn() && response?.status === 401) {
session.destroy();
session.destroy(false);
const hash = window.location.hash;
const url = hash.slice(1);
Router.push({ path: url });
Router.push(`/login?redirect=${url}`);
} else if (!session.isLoggedIn()) {
return Promise.reject(error);
}