Skip to content

Commit 01aa727

Browse files
committed
Fix WebStore...
1 parent 17c0757 commit 01aa727

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

glean/src/platform/browser/web/storage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ namespace IDBWrapper {
2929
* @returns The promise generated by the callback.
3030
*/
3131
function withDatabase(fn: () => Promise<void>): Promise<void> {
32-
if (!db) {
32+
if (db) {
3333
return fn();
3434
}
3535

0 commit comments

Comments
 (0)