diff --git a/packages/core/api/database.js b/packages/core/api/database.js index 2fdba8f68..c10d1ba80 100644 --- a/packages/core/api/database.js +++ b/packages/core/api/database.js @@ -16,6 +16,7 @@ class Database { async getNotes() { //update our cache this.notes = await this.storage.read(KEYS.notes); + if (!this.notes) this.notes = {}; return Object.values(this.notes); }