fix DM room names appearing as "Empty room"

because we weren't properly awaiting the heroes to be loaded
This commit is contained in:
Bruno Windels 2021-05-12 23:07:25 +02:00
parent c153f4a3e2
commit f5f25c3019
1 changed files with 2 additions and 2 deletions

View File

@ -272,8 +272,8 @@ export class Room extends BaseRoom {
/** @package */
async load(summary, txn, log) {
try {
super.load(summary, txn, log);
this._syncWriter.load(txn, log);
await super.load(summary, txn, log);
await this._syncWriter.load(txn, log);
} catch (err) {
throw new WrappedError(`Could not load room ${this._roomId}`, err);
}