aboutsummaryrefslogtreecommitdiff
path: root/ext/js/language/dictionary-database.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2021-08-07 15:25:00 -0400
committerGitHub <noreply@github.com>2021-08-07 15:25:00 -0400
commit2d5e6f839412985ae790da34b3f75476bcf8028c (patch)
tree1dbe04b1510bf951178959ce90881669b1cb71fa /ext/js/language/dictionary-database.js
parente704ae99a2719b75d5e51f812d6176ea2d34773c (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.js4
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) {