mirror of
https://github.com/mempool/mempool.git
synced 2024-11-20 10:21:52 +01:00
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)
|
||||
.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);
|
||||
}
|
||||
}));
|
||||
|
Loading…
Reference in New Issue
Block a user