@abp/ng.core 4.4.3 → 4.4.4

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.
@@ -1683,7 +1683,6 @@
1683
1683
  this.route = injector.get(i1.ActivatedRoute);
1684
1684
  this.router = injector.get(i1.Router);
1685
1685
  this.routes = injector.get(RoutesService);
1686
- this.getLayout();
1687
1686
  this.checkLayoutOnNavigationEnd();
1688
1687
  this.listenToLanguageChange();
1689
1688
  }
@@ -3176,6 +3175,9 @@
3176
3175
  if (shouldClear)
3177
3176
  clearOAuthStorage(oAuthStorage);
3178
3177
  this.oAuthService.configure(this.oAuthConfig);
3178
+ this.oAuthService.events
3179
+ .pipe(operators.filter(function (event) { return event.type === 'token_refresh_error'; }))
3180
+ .subscribe(function () { return _this.navigateToLogin(); });
3179
3181
  return [2 /*return*/, this.oAuthService
3180
3182
  .loadDiscoveryDocument()
3181
3183
  .then(function () {