From 041cedbc58542951f9ba30f3e7a6483c60cc5b41 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Wed, 20 Oct 2021 15:24:39 +0200 Subject: [PATCH] fix typescript extension change --- src/matrix/e2ee/megolm/Decryption.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix/e2ee/megolm/Decryption.js b/src/matrix/e2ee/megolm/Decryption.js index 30e1480f..a4771cc8 100644 --- a/src/matrix/e2ee/megolm/Decryption.js +++ b/src/matrix/e2ee/megolm/Decryption.js @@ -15,7 +15,7 @@ limitations under the License. */ import {DecryptionError} from "../common.js"; -import * as RoomKey from "./decryption/RoomKey.js"; +import * as RoomKey from "./decryption/RoomKey"; import {SessionInfo} from "./decryption/SessionInfo.js"; import {DecryptionPreparation} from "./decryption/DecryptionPreparation.js"; import {SessionDecryption} from "./decryption/SessionDecryption.js";