aboutsummaryrefslogtreecommitdiff
path: root/ext/js/language
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2021-08-13 18:35:31 -0400
committerGitHub <noreply@github.com>2021-08-13 18:35:31 -0400
commitcd78d56feedef1475ce8ddb98e208c7a004819df (patch)
tree0584c50b423fb366074bc53919da8f96258066f6 /ext/js/language
parent9facacfb23a03c63da4c1cd8c7514b5fd3d3b0f9 (diff)
Database improvements to data persistency (#1893)
* Fix function check * Rename arguments of getAll, getAllKeys, and their private functions * Simplify bulkAdd * Simplify delete * Simplify bulkDelete * Remove persistData
Diffstat (limited to 'ext/js/language')
-rw-r--r--ext/js/language/dictionary-database.js4
-rw-r--r--ext/js/language/dictionary-importer.js4
2 files changed, 0 insertions, 8 deletions
diff --git a/ext/js/language/dictionary-database.js b/ext/js/language/dictionary-database.js
index 62300676..6b235fb6 100644
--- a/ext/js/language/dictionary-database.js
+++ b/ext/js/language/dictionary-database.js
@@ -317,10 +317,6 @@ 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) {
diff --git a/ext/js/language/dictionary-importer.js b/ext/js/language/dictionary-importer.js
index 8d6dcb33..89417ca6 100644
--- a/ext/js/language/dictionary-importer.js
+++ b/ext/js/language/dictionary-importer.js
@@ -149,10 +149,6 @@ class DictionaryImporter {
this._progressData.index += count;
this._progress();
}
-
- // This function is required in order to make the added data persist after the worker is terminated.
- // https://bugs.chromium.org/p/chromium/issues/detail?id=1237686
- await dictionaryDatabase.persistData(objectStoreName);
};
await bulkAdd('terms', termList);