@ts-core/angular 15.0.42 → 15.0.44

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.
@@ -5590,14 +5590,14 @@ class UserBaseService extends DestroyableContainer {
5590
5590
  }
5591
5591
  });
5592
5592
  }
5593
- initializeUser() {
5594
- this._user = this.createUser(this.login.loginData);
5593
+ initializeUser(data) {
5594
+ this._user = this.createUser(data);
5595
5595
  }
5596
5596
  deinitializeUser() {
5597
5597
  this._user = null;
5598
5598
  }
5599
5599
  loginedHandler() {
5600
- this.initializeUser();
5600
+ this.initializeUser(this.login.loginData);
5601
5601
  this.observer.next(new ObservableData(UserBaseServiceEvent.LOGINED, this.user));
5602
5602
  }
5603
5603
  logoutedHandler() {