From 9e90242ddb2cc87367d0edf523334de2956c71ed Mon Sep 17 00:00:00 2001 From: Peng Xiao Date: Fri, 30 Jun 2023 16:09:43 +0800 Subject: [PATCH] fix: disable sqlite blob storage (#2943) --- packages/workspace/src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/workspace/src/utils.ts b/packages/workspace/src/utils.ts index c9cafd55df..4798076bf4 100644 --- a/packages/workspace/src/utils.ts +++ b/packages/workspace/src/utils.ts @@ -100,7 +100,7 @@ export function createEmptyBlockSuiteWorkspace( } else { if (isBrowser) { blobStorages.push(createIndexeddbStorage); - if (isDesktop) { + if (isDesktop && runtimeConfig.enableSQLiteProvider) { blobStorages.push(createSQLiteStorage); } }