@osovitny/anatoly 3.21.23 → 3.21.25

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.
@@ -1970,7 +1970,9 @@ class AuthService extends ApiServiceBase {
1970
1970
  console.log(`iam.msal: InteractionStatus.None`);
1971
1971
  MSALRedirect.handle(this.router, 'msalBroadcastService.inProgress$ InteractionStatus.None');
1972
1972
  this.checkAndSetActiveAccount();
1973
- this.appContext.updateCurrent();
1973
+ setTimeout(() => {
1974
+ this.appContext.updateCurrent();
1975
+ });
1974
1976
  break;
1975
1977
  }
1976
1978
  });
@@ -2306,7 +2308,8 @@ class AppsGoServiceBase extends GoServiceBase {
2306
2308
  appSettings = getAppSettingsById(1);
2307
2309
  }
2308
2310
  if (appSettings) {
2309
- let url = appSettings.baseUrl + appSettings.root;
2311
+ let baseUrl = appSettings.baseUrl || '';
2312
+ let url = baseUrl + appSettings.root;
2310
2313
  if (path && params) {
2311
2314
  url += (url.endsWith('/') ? "" : "/") + path + "?" + params;
2312
2315
  }