From 0f17b01a74121dbee39d1de975f9dee9084d215c Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Tue, 27 Aug 2024 13:07:09 +0500 Subject: [PATCH] desktop: disable native crypto --- apps/web/src/interfaces/nncrypto.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/apps/web/src/interfaces/nncrypto.ts b/apps/web/src/interfaces/nncrypto.ts index 4d4b3d75b..924a81532 100644 --- a/apps/web/src/interfaces/nncrypto.ts +++ b/apps/web/src/interfaces/nncrypto.ts @@ -21,7 +21,8 @@ import { INNCrypto } from "@notesnook/crypto"; import CryptoWorker from "./nncrypto.worker?worker"; import { wrap } from "comlink"; -export const NNCrypto = - IS_DESKTOP_APP && window.NativeNNCrypto - ? new window.NativeNNCrypto() - : (wrap(new CryptoWorker()) as INNCrypto); +export const NNCrypto = wrap(new CryptoWorker()) as INNCrypto; +// TODO: disable until we fix the `pull failed` errors for good. +// IS_DESKTOP_APP && window.NativeNNCrypto +// ? new window.NativeNNCrypto() +// : (wrap(new CryptoWorker()) as INNCrypto);