forked from mystiq/hydrogen-web
Merge pull request #351 from vector-im/bwindels/fix-await-room-load
fix DM room names appearing as "Empty room"
This commit is contained in:
commit
1ef6a91cf1
1 changed files with 2 additions and 2 deletions
|
@ -272,8 +272,8 @@ export class Room extends BaseRoom {
|
||||||
/** @package */
|
/** @package */
|
||||||
async load(summary, txn, log) {
|
async load(summary, txn, log) {
|
||||||
try {
|
try {
|
||||||
super.load(summary, txn, log);
|
await super.load(summary, txn, log);
|
||||||
this._syncWriter.load(txn, log);
|
await this._syncWriter.load(txn, log);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
throw new WrappedError(`Could not load room ${this._roomId}`, err);
|
throw new WrappedError(`Could not load room ${this._roomId}`, err);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue