mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-15 05:37:32 +00:00
fix: disable sqlite blob storage (#2943)
This commit is contained in:
@@ -100,7 +100,7 @@ export function createEmptyBlockSuiteWorkspace(
|
|||||||
} else {
|
} else {
|
||||||
if (isBrowser) {
|
if (isBrowser) {
|
||||||
blobStorages.push(createIndexeddbStorage);
|
blobStorages.push(createIndexeddbStorage);
|
||||||
if (isDesktop) {
|
if (isDesktop && runtimeConfig.enableSQLiteProvider) {
|
||||||
blobStorages.push(createSQLiteStorage);
|
blobStorages.push(createSQLiteStorage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user