From 736b122fc7bd48cee66b4e0759cc65d865dae02d Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Thu, 12 Aug 2021 10:41:58 -0700 Subject: [PATCH] Start migrating GroupSessionDecryptionStore to TypeScript --- src/matrix/storage/idb/Transaction.js | 2 +- ...SessionDecryptionStore.js => GroupSessionDecryptionStore.ts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/matrix/storage/idb/stores/{GroupSessionDecryptionStore.js => GroupSessionDecryptionStore.ts} (100%) diff --git a/src/matrix/storage/idb/Transaction.js b/src/matrix/storage/idb/Transaction.js index a8f90114..239293c6 100644 --- a/src/matrix/storage/idb/Transaction.js +++ b/src/matrix/storage/idb/Transaction.js @@ -31,7 +31,7 @@ import {DeviceIdentityStore} from "./stores/DeviceIdentityStore"; import {OlmSessionStore} from "./stores/OlmSessionStore"; import {InboundGroupSessionStore} from "./stores/InboundGroupSessionStore"; import {OutboundGroupSessionStore} from "./stores/OutboundGroupSessionStore"; -import {GroupSessionDecryptionStore} from "./stores/GroupSessionDecryptionStore.js"; +import {GroupSessionDecryptionStore} from "./stores/GroupSessionDecryptionStore"; import {OperationStore} from "./stores/OperationStore.js"; import {AccountDataStore} from "./stores/AccountDataStore.js"; diff --git a/src/matrix/storage/idb/stores/GroupSessionDecryptionStore.js b/src/matrix/storage/idb/stores/GroupSessionDecryptionStore.ts similarity index 100% rename from src/matrix/storage/idb/stores/GroupSessionDecryptionStore.js rename to src/matrix/storage/idb/stores/GroupSessionDecryptionStore.ts