Skip to content
Snippets Groups Projects
Commit 67875e2a authored by tamaina's avatar tamaina
Browse files

Revert "Fix idb"

This reverts commit dd170651.
parent dd170651
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@ import {
get as iget,
set as iset,
del as idel,
createStore,
} from 'idb-keyval';
const fallbackName = (key: string) => `idbfallback::${key}`;
......@@ -12,9 +13,9 @@ let idbAvailable = typeof window !== 'undefined' ? !!window.indexedDB : true;
if (idbAvailable) {
try {
await iset('idb-test', 'test');
await createStore('keyval-store', 'keyval');
} catch (e) {
console.error('idb error', e);
console.error('idb open error', e);
idbAvailable = false;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment