[auth] more auth fixes

This commit is contained in:
nymkappa 2024-07-02 21:20:18 +09:00
parent 63cb6c3804
commit c6b2db9282
No known key found for this signature in database
GPG Key ID: 92358FC85D9645DE

View File

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