From 504371eaf3839f628ae2bf9deca33d985d834347 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Mon, 14 Sep 2020 15:44:34 +0200 Subject: [PATCH] this is outdated (and not really needed) --- src/matrix/storage/idb/Transaction.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/matrix/storage/idb/Transaction.js b/src/matrix/storage/idb/Transaction.js index af6d49ca..d28d802f 100644 --- a/src/matrix/storage/idb/Transaction.js +++ b/src/matrix/storage/idb/Transaction.js @@ -36,12 +36,7 @@ export class Transaction { constructor(txn, allowedStoreNames) { this._txn = txn; this._allowedStoreNames = allowedStoreNames; - this._stores = { - session: null, - roomSummary: null, - roomTimeline: null, - roomState: null, - }; + this._stores = {}; } _idbStore(name) {