From 3cebd17cbed4fa31a47bc940d5ec41bc95a2152e Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Thu, 17 Sep 2020 15:17:46 +0200 Subject: [PATCH] adjust paths --- src/matrix/ssss/SecretStorage.js | 2 +- src/matrix/ssss/recoveryKey.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/matrix/ssss/SecretStorage.js b/src/matrix/ssss/SecretStorage.js index 572b06e9..a6ce2353 100644 --- a/src/matrix/ssss/SecretStorage.js +++ b/src/matrix/ssss/SecretStorage.js @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -import {base64} from "../../../utils/base-encoding.js"; +import {base64} from "../../utils/base-encoding.js"; export class SecretStorage { constructor({key, storage, cryptoDriver}) { diff --git a/src/matrix/ssss/recoveryKey.js b/src/matrix/ssss/recoveryKey.js index 002e294f..314c2ec6 100644 --- a/src/matrix/ssss/recoveryKey.js +++ b/src/matrix/ssss/recoveryKey.js @@ -13,7 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ -import {base58} from "../../../utils/base-encoding.js"; +import {base58} from "../../utils/base-encoding.js"; import {Key} from "./common.js"; const OLM_RECOVERY_KEY_PREFIX = [0x8B, 0x01];