From 65429a48c17c5b2872301f5da73078fc2e8c8ae8 Mon Sep 17 00:00:00 2001 From: Romaric Mourgues Date: Mon, 24 Apr 2023 19:21:53 +0200 Subject: [PATCH] Fix lint --- tdrive/backend/node/src/core/crypto/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrive/backend/node/src/core/crypto/index.ts b/tdrive/backend/node/src/core/crypto/index.ts index 290e39f2..05a5ae02 100644 --- a/tdrive/backend/node/src/core/crypto/index.ts +++ b/tdrive/backend/node/src/core/crypto/index.ts @@ -50,6 +50,6 @@ export function encrypt( encryptionKey: any, options: { disableSalts?: boolean } = {}, ): CryptoResult { - if (!encryptionKey) return { data:ˋ${value}`, done: true }; + if (!encryptionKey) return { data: `${value}`, done: true }; return v2.encrypt(value, encryptionKey, options); }