diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-08-07 15:25:00 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-08-08 16:04:57 -0400 |
commit | 4341b5078343dccc3b082a496fd6c158b872fc99 (patch) | |
tree | 2e175f3f25c4ef14438fe9a28f7c8fe9a1b6d549 /ext/js/language/dictionary-database.js | |
parent | b590a147015df21eec02054eb542ff23f2a4c0ef (diff) |
Fix data not being persisted after terminating Worker thread (#1877)
Diffstat (limited to 'ext/js/language/dictionary-database.js')
-rw-r--r-- | ext/js/language/dictionary-database.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/js/language/dictionary-database.js b/ext/js/language/dictionary-database.js index 6b235fb6..62300676 100644 --- a/ext/js/language/dictionary-database.js +++ b/ext/js/language/dictionary-database.js @@ -317,6 +317,10 @@ class DictionaryDatabase { return this._db.bulkAdd(objectStoreName, items, start, count); } + persistData(objectStoreName) { + return this._db.persistData(objectStoreName); + } + // Private _findMultiBulk(objectStoreName, indexNames, items, createQuery, predicate, createResult) { |