await the room log operations for login/load session
so the callee can await the operation
This commit is contained in:
parent
113b47540a
commit
86011b42e3
1 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@ export class SessionContainer {
|
|||
return;
|
||||
}
|
||||
this._status.set(LoadStatus.Loading);
|
||||
this._platform.logger.run("load session", async log => {
|
||||
await this._platform.logger.run("load session", async log => {
|
||||
log.set("id", sessionId);
|
||||
try {
|
||||
const sessionInfo = await this._platform.sessionInfoStorage.get(sessionId);
|
||||
|
@ -94,7 +94,7 @@ export class SessionContainer {
|
|||
if (this._status.get() !== LoadStatus.NotLoading) {
|
||||
return;
|
||||
}
|
||||
this._platform.logger.run("login", async log => {
|
||||
await this._platform.logger.run("login", async log => {
|
||||
this._status.set(LoadStatus.Login);
|
||||
const clock = this._platform.clock;
|
||||
let sessionInfo;
|
||||
|
|
Reference in a new issue