Skip to content

Commit

Permalink
Close IDB database before deleting it to prevent spurious unexpected …
Browse files Browse the repository at this point in the history
…close errors (#3478)
  • Loading branch information
t3chguy authored Jun 15, 2023
1 parent c425945 commit 9b5b533
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/store/indexeddb-local-backend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,12 +338,16 @@ export class LocalIndexedDBStoreBackend implements IIndexedDBBackend {

/**
* Clear the entire database. This should be used when logging out of a client
* to prevent mixing data between accounts.
* to prevent mixing data between accounts. Closes the database.
* @returns Resolved when the database is cleared.
*/
public clearDatabase(): Promise<void> {
return new Promise((resolve) => {
logger.log(`Removing indexeddb instance: ${this.dbName}`);

// Close the database first to avoid firing unexpected close events
this.db?.close();

const req = this.indexedDB.deleteDatabase(this.dbName);

req.onblocked = (): void => {
Expand Down

0 comments on commit 9b5b533

Please sign in to comment.