intelica-library-components 1.1.58 → 1.1.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -662,7 +662,7 @@ const RefreshTokenInterceptor = (req, next) => {
662
662
  businessUserClientGroupID: getCookie("businessUserClientGroupID") ?? "",
663
663
  access: authenticationClientID == "" ? "" : getCookie(authenticationClientID) ?? "",
664
664
  };
665
- if (!req.url.includes("auth/token/validate") && !req.url.includes("environment.json"))
665
+ if (!req.url.includes("ValidateToken") && !req.url.includes("environment.json") && !req.url.includes("auth/token/validate"))
666
666
  return from(httpClient.post(path, validateTokenQuery)).pipe(switchMap((response) => {
667
667
  if (response.expired) {
668
668
  intelicaSessionService.clearAll();