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

View File

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