From e4758d06519641cbc182ff3bc9dab10162c29e88 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Fri, 21 Aug 2020 18:14:07 +0200 Subject: [PATCH] we need to read from members now during load, for the heroes and were actually not reading from room state --- src/matrix/Session.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix/Session.js b/src/matrix/Session.js index 80ef342b..7a7dea52 100644 --- a/src/matrix/Session.js +++ b/src/matrix/Session.js @@ -36,7 +36,7 @@ export class Session { const txn = await this._storage.readTxn([ this._storage.storeNames.session, this._storage.storeNames.roomSummary, - this._storage.storeNames.roomState, + this._storage.storeNames.roomMembers, this._storage.storeNames.timelineEvents, this._storage.storeNames.timelineFragments, this._storage.storeNames.pendingEvents,