fix(android): fix user db engine (#11684)

This commit is contained in:
EYHN
2025-04-17 02:26:56 +00:00
parent e8d2b0114b
commit b8d9c5417d
@@ -17,11 +17,11 @@ export class UserDBEngine extends Entity<{
readonly client: StoreClient;
DocStorageType =
BUILD_CONFIG.isElectron || BUILD_CONFIG.isIOS
BUILD_CONFIG.isElectron || BUILD_CONFIG.isIOS || BUILD_CONFIG.isAndroid
? SqliteDocStorage
: IndexedDBDocStorage;
DocSyncStorageType =
BUILD_CONFIG.isElectron || BUILD_CONFIG.isIOS
BUILD_CONFIG.isElectron || BUILD_CONFIG.isIOS || BUILD_CONFIG.isAndroid
? SqliteDocSyncStorage
: IndexedDBDocSyncStorage;