Fix for non matching request URLs.
This commit is contained in:
parent
d0da875e69
commit
42d1fcbdee
@ -34,7 +34,7 @@ export class HttpCacheInterceptor implements HttpInterceptor {
|
|||||||
return next.handle(request)
|
return next.handle(request)
|
||||||
.pipe(tap((event: HttpEvent<any>) => {
|
.pipe(tap((event: HttpEvent<any>) => {
|
||||||
if (!this.isBrowser && event instanceof HttpResponse) {
|
if (!this.isBrowser && event instanceof HttpResponse) {
|
||||||
const keyId = request.url.split('/').slice(3).join('/');
|
const keyId = request.url.split('/').slice(3).join('/').replace('api/v1/', '');
|
||||||
this.transferState.set(makeStateKey('/' + keyId), event);
|
this.transferState.set(makeStateKey('/' + keyId), event);
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user