@open-rlb/ng-app 3.0.5 → 3.0.7

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.
@@ -1309,6 +1309,7 @@ class AuthenticationService {
1309
1309
  // } else {
1310
1310
  return this.oidc.checkAuthMultiple(url)
1311
1311
  .pipe(tap(data => {
1312
+ this.logger.warn(`oidc checkAuthMultiple check, response: ${JSON.stringify(data)}; looking for at least one isAuthenticated`);
1312
1313
  if (data.some(o => o.isAuthenticated)) {
1313
1314
  const redirect = this.cookiesService.getCookie('loginRedirectUrl');
1314
1315
  if (redirect) {
@@ -1359,7 +1360,7 @@ class AuthenticationService {
1359
1360
  }
1360
1361
  get isAuthenticated$() {
1361
1362
  return this.oidc.isAuthenticated$.pipe(map((isAuthenticated) => {
1362
- this.logger.warn(`oidc isAuthenticated$ check, response: ${isAuthenticated}; looking for isAuthenticated of ${this.currentProvider?.configId} configId`);
1363
+ this.logger.warn(`oidc isAuthenticated$ check, response: ${JSON.stringify(isAuthenticated)}; looking for isAuthenticated of ${this.currentProvider?.configId} configId`);
1363
1364
  return isAuthenticated.allConfigsAuthenticated.find(o => o.configId === this.currentProvider?.configId)?.isAuthenticated || false;
1364
1365
  }));
1365
1366
  }