mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 11:35:04 +01:00
doesn't need to be async for now
This commit is contained in:
parent
8462a0ac6b
commit
f8bd11f07b
@ -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 New Issue
Block a user