Merge pull request #5256 from mempool/nymkappa/more-auth-fix

[auth] more auth fixes
This commit is contained in:
softsimon 2024-07-02 21:31:36 +09:00 committed by GitHub
commit 8028d80ab8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -44,7 +44,10 @@ export class AuthServiceMempool {
map((user) => {
return user;
}),
catchError(() => of(null)),
catchError(() => {
this.setAuth(null);
return of(null);
}),
);
}