fix: fixes issue where some accounts were not correctly loading subscription info (#2361)

This commit is contained in:
Mo
2023-07-17 09:25:00 -05:00
committed by GitHub
parent 7fb33c400c
commit eba1289ab9
3 changed files with 34 additions and 18 deletions

View File

@@ -169,9 +169,7 @@ export class SNSessionManager
private setSession(session: Session | LegacySession, persist = true): void {
this.session = session
if (session instanceof Session) {
this.httpService.setSession(session)
}
this.httpService.setSession(session)
this.apiService.setSession(session, persist)