From 15d7d57b094f891ca43fa81a4068d8379c434abb Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Thu, 12 Aug 2021 10:19:09 -0700 Subject: [PATCH] Start migrating OlmSessionStore to TypeScript --- src/matrix/storage/idb/Transaction.js | 2 +- .../idb/stores/{OlmSessionStore.js => OlmSessionStore.ts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/matrix/storage/idb/stores/{OlmSessionStore.js => OlmSessionStore.ts} (100%) diff --git a/src/matrix/storage/idb/Transaction.js b/src/matrix/storage/idb/Transaction.js index dd949750..90bbb757 100644 --- a/src/matrix/storage/idb/Transaction.js +++ b/src/matrix/storage/idb/Transaction.js @@ -28,7 +28,7 @@ import {TimelineFragmentStore} from "./stores/TimelineFragmentStore"; import {PendingEventStore} from "./stores/PendingEventStore"; import {UserIdentityStore} from "./stores/UserIdentityStore"; import {DeviceIdentityStore} from "./stores/DeviceIdentityStore"; -import {OlmSessionStore} from "./stores/OlmSessionStore.js"; +import {OlmSessionStore} from "./stores/OlmSessionStore"; import {InboundGroupSessionStore} from "./stores/InboundGroupSessionStore.js"; import {OutboundGroupSessionStore} from "./stores/OutboundGroupSessionStore.js"; import {GroupSessionDecryptionStore} from "./stores/GroupSessionDecryptionStore.js"; diff --git a/src/matrix/storage/idb/stores/OlmSessionStore.js b/src/matrix/storage/idb/stores/OlmSessionStore.ts similarity index 100% rename from src/matrix/storage/idb/stores/OlmSessionStore.js rename to src/matrix/storage/idb/stores/OlmSessionStore.ts