diff options
Diffstat (limited to 'ext/bg/js/database.js')
-rw-r--r-- | ext/bg/js/database.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/bg/js/database.js b/ext/bg/js/database.js index 7cf92c44..79a0a7a1 100644 --- a/ext/bg/js/database.js +++ b/ext/bg/js/database.js @@ -20,7 +20,7 @@ class Database { constructor() { this.db = null; - this.dbVer = 7; + this.dbVer = 6; this.entities = null; } @@ -37,6 +37,8 @@ class Database { dictionaries: '++, title, version', meta: 'name, value', }); + + return Promise.resolve(); } prepare() { |