mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-23 15:40:57 -05:00
fix: only delete session if error is Unauthorized
This commit is contained in:
parent
15e8e10151
commit
472e6e07b5
2 changed files with 3 additions and 2 deletions
|
@ -159,7 +159,7 @@ class ClientController {
|
|||
})
|
||||
.catch((err) => {
|
||||
const error = takeError(err);
|
||||
if (error === "Forbidden" || error === "Unauthorized") {
|
||||
if (error === "Unauthorized") {
|
||||
this.sessions.delete(user_id);
|
||||
this.current = null;
|
||||
this.pickNextSession();
|
||||
|
|
|
@ -10,8 +10,9 @@ export function takeError(error: any): string {
|
|||
case 429:
|
||||
return "TooManyRequests";
|
||||
case 401:
|
||||
return "Unauthorized"
|
||||
case 403:
|
||||
return "Unauthorized";
|
||||
return "Forbidden";
|
||||
default:
|
||||
return "UnknownError";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue