Skip to content
Snippets Groups Projects
Verified Commit 83af04e4 authored by David Noah Donges's avatar David Noah Donges Committed by Lukas Maximilian Kimpel
Browse files

Fix token interceptor

Fixed token interceptor routes requested by users that aren't logged in (e.g. login route) as the token got accessed directly
without checking if the user object is not undefined.
parent 2943d9ed
1 merge request!74API BASE BRANCH
......@@ -17,9 +17,8 @@ export class AuthenticationInterceptor implements HttpInterceptor {
}
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
const token = this.authenticationService.getUser().token;
if (token) {
if (this.authenticationService.isLoggedIn()) {
const token = this.authenticationService.getToken();
const cloned = req.clone({
headers: req.headers.set(AUTH_HEADER_KEY, token)
});
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment