@open-rlb/ng-app 3.1.94 → 3.1.95

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.
@@ -1571,8 +1571,12 @@ class AuthenticationService {
1571
1571
  if (responses.some(r => r.isAuthenticated)) {
1572
1572
  this._authenticated$.next();
1573
1573
  }
1574
+ this._authenticated$.complete();
1575
+ },
1576
+ error: () => {
1577
+ this._authReady$.next();
1578
+ this._authenticated$.complete();
1574
1579
  },
1575
- error: () => this._authReady$.next(),
1576
1580
  }));
1577
1581
  }
1578
1582
  login(targetUrl) {