We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba371f7 commit 105b155Copy full SHA for 105b155
src/store/indexeddb.ts
@@ -297,7 +297,7 @@ export class IndexedDBStore extends MemoryStore {
297
298
return async (...args) => {
299
try {
300
- return func.call(this, ...args);
+ return await func.call(this, ...args);
301
} catch (e) {
302
logger.error("IndexedDBStore failure, degrading to MemoryStore", e);
303
this.emitter.emit("degraded", e);
0 commit comments