diff --git a/src/app/_interceptors/http-config.interceptor.ts b/src/app/_interceptors/http-config.interceptor.ts index cb4431c..304ba9e 100644 --- a/src/app/_interceptors/http-config.interceptor.ts +++ b/src/app/_interceptors/http-config.interceptor.ts @@ -20,7 +20,7 @@ export class HttpConfigInterceptor implements HttpInterceptor { * @returns The forwarded request. */ intercept(request: HttpRequest, next: HttpHandler): Observable> { - if (request.url.startsWith(environment.cicMetaUrl)) { + if (request.url.startsWith(environment.cicMetaUrl) || request.url.startsWith(environment.cicUssdUrl)) { const token: string = sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN')); if (token) {