diff --git a/public/migrate.html b/public/migrate.html
index 27b34936..1ad795d4 100644
--- a/public/migrate.html
+++ b/public/migrate.html
@@ -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 {