From 7bfcfc9eede1d8e8fc8fe03ae9b021399ccec06b Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Fri, 4 Sep 2020 16:40:51 +0200 Subject: [PATCH] correct store name --- src/matrix/storage/idb/Transaction.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix/storage/idb/Transaction.js b/src/matrix/storage/idb/Transaction.js index 946b06cc..e0982c54 100644 --- a/src/matrix/storage/idb/Transaction.js +++ b/src/matrix/storage/idb/Transaction.js @@ -108,7 +108,7 @@ export class Transaction { } get groupSessionDecryptions() { - return this._store("groupSessionDecryptions", idbStore => new OutboundGroupSessionStore(idbStore)); + return this._store("groupSessionDecryptions", idbStore => new GroupSessionDecryptionStore(idbStore)); } complete() {