Fix for non matching request URLs.

This commit is contained in:
softsimon 2020-11-27 20:01:25 +07:00
parent d0da875e69
commit 42d1fcbdee
No known key found for this signature in database
GPG Key ID: 488D7DCFB5A430D7

View File

@ -34,7 +34,7 @@ export class HttpCacheInterceptor implements HttpInterceptor {
return next.handle(request)
.pipe(tap((event: HttpEvent<any>) => {
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);
}
}));