From aa46ab66ca580ec342ffb8623b50f9808967d1b6 Mon Sep 17 00:00:00 2001 From: Florian Duros Date: Wed, 18 Sep 2024 15:55:51 +0200 Subject: [PATCH] Replace old `decodeRecoveryKey` import --- src/SecurityManager.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/SecurityManager.ts b/src/SecurityManager.ts index 6bfd361140..75eb365d15 100644 --- a/src/SecurityManager.ts +++ b/src/SecurityManager.ts @@ -6,9 +6,8 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only Please see LICENSE files in the repository root for full details. */ -import { ICryptoCallbacks, SecretStorage } from "matrix-js-sdk/src/matrix"; +import { ICryptoCallbacks, SecretStorage, decodeRecoveryKey } from "matrix-js-sdk/src/matrix"; import { deriveKey } from "matrix-js-sdk/src/crypto/key_passphrase"; -import { decodeRecoveryKey } from "matrix-js-sdk/src/crypto/recoverykey"; import { logger } from "matrix-js-sdk/src/logger"; import type CreateSecretStorageDialog from "./async-components/views/dialogs/security/CreateSecretStorageDialog";