forked from mystiq/hydrogen-web
doesn't need to be async for now
This commit is contained in:
parent
8462a0ac6b
commit
f8bd11f07b
1 changed files with 2 additions and 2 deletions
|
@ -32,10 +32,10 @@ export default class RoomSummary {
|
||||||
return this._joinCount;
|
return this._joinCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
async applySync(roomResponse, membership, txn) {
|
applySync(roomResponse, membership, txn) {
|
||||||
const changed = this._processSyncResponse(roomResponse, membership);
|
const changed = this._processSyncResponse(roomResponse, membership);
|
||||||
if (changed) {
|
if (changed) {
|
||||||
await this._persist(txn);
|
this._persist(txn);
|
||||||
}
|
}
|
||||||
return changed;
|
return changed;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue