bump to v 0.1.5 and other misc tweaks

This commit is contained in:
2023-12-09 20:36:51 -07:00
parent 2c300614ef
commit 9c36bb509a
8 changed files with 34 additions and 12 deletions

View File

@@ -395,12 +395,12 @@ async function setMostRecentNotified(id) {
data["lastNotifiedClaimId"] = id;
await updateRecord(store, data);
} else {
console.error("Record not found");
console.error("IndexedDB settings record not found.");
}
transaction.oncomplete = () => db.close();
} catch (error) {
console.error("Database error: " + error.message);
console.error("IndexedDB error:", error);
}
}