diff --git a/src/storage/binary/index.ts b/src/storage/binary/index.ts index 2b497c0..deac88c 100644 --- a/src/storage/binary/index.ts +++ b/src/storage/binary/index.ts @@ -886,7 +886,7 @@ export class AceBaseStorage extends Storage { const exists = await pfs.exists(this.fileName); if (exists) { openDatabaseFile(); } else { poll(); } - }, 10); // Wait 10ms before trying again + }, 1000); // Wait 1s before trying again }; poll(); }