This commit is contained in:
Zyronon
2025-11-18 14:19:05 +08:00
committed by GitHub
parent 4945269f57
commit 6b9423414d

View File

@@ -47,7 +47,10 @@
const indexedDBData = {};
for (let key of keys) {
indexedDBData[key] = await db.get(key);
let res = await db.get(key);
if (res === null) {
indexedDBData[key] = res
}
}
return {