mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-22 09:13:18 +03:00
fix: electron dev crash (#2746)
This commit is contained in:
parent
f2ac2e5b84
commit
1e6e0336c3
@ -23,8 +23,9 @@ export abstract class BaseSQLiteAdapter {
|
||||
async destroy() {
|
||||
const { db } = this;
|
||||
this.db = null;
|
||||
await db?.close();
|
||||
// log after close will sometimes crash the app when quitting
|
||||
logger.info(`[SQLiteAdapter:${this.role}]`, 'destroyed:', this.path);
|
||||
await db?.close();
|
||||
}
|
||||
|
||||
async addBlob(key: string, data: Uint8Array) {
|
||||
|
Loading…
Reference in New Issue
Block a user