chore: Update translations
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Kieran 2024-01-19 23:23:53 +00:00
parent 9be57a6e84
commit 9ceb3c705f
1 changed files with 5 additions and 1 deletions

View File

@ -30,7 +30,11 @@ export class SqliteRelay extends EventEmitter<RelayHandlerEvents> implements Rel
try {
this.#db = new this.#sqlite.oo1.OpfsDb(path, "cw");
this.#log(`Opened ${this.#db.filename}`);
this.#db.exec(`PRAGMA cache_size=${32 * 1024}; PRAGMA page_size=8192; PRAGMA journal_mode=MEMORY; PRAGMA temp_store=MEMORY;`);
this.#db.exec(
`PRAGMA cache_size=${
32 * 1024
}; PRAGMA page_size=8192; PRAGMA journal_mode=MEMORY; PRAGMA temp_store=MEMORY;`,
);
} catch (e) {
// wipe db
console.error(e);