Skip to content

Commit

Permalink
fix: throwing 401 sing in related errors back from interceptor (#3268)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aniruddha-Shriwant authored Nov 19, 2024
1 parent bd8dfc8 commit 011769b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/core/interceptors/httpInterceptor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export class HttpConfigInterceptor implements HttpInterceptor {
this.secureStorageService.clearAll();
this.storageService.clearAll();
globalCacheBusterNotifier.next();
return EMPTY;
return throwError(error);
}
}
return throwError(error);
Expand Down

0 comments on commit 011769b

Please sign in to comment.