diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-12-13 11:29:32 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-12-14 22:34:33 -0500 |
commit | 1d4ad6e74446b250c4627e0f7790e5ff85171f3c (patch) | |
tree | 47c8c63a61e890b99e49124be3a38bb7c2386cbf /ext/bg/js/settings | |
parent | e03380108983ee5ff82b4b10b08b31c78208370c (diff) |
Fix storage stats update error during dictionary deletion (#1106)
Diffstat (limited to 'ext/bg/js/settings')
-rw-r--r-- | ext/bg/js/settings/dictionary-controller.js | 2 | ||||
-rw-r--r-- | ext/bg/js/settings/dictionary-import-controller.js | 2 | ||||
-rw-r--r-- | ext/bg/js/settings/main.js | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/ext/bg/js/settings/dictionary-controller.js b/ext/bg/js/settings/dictionary-controller.js index db3ebb22..ed33b97b 100644 --- a/ext/bg/js/settings/dictionary-controller.js +++ b/ext/bg/js/settings/dictionary-controller.js @@ -185,7 +185,7 @@ class DictionaryEntry { } class DictionaryController { - constructor(settingsController, modalController, storageController, statusFooter=null) { + constructor(settingsController, modalController, storageController, statusFooter) { this._settingsController = settingsController; this._modalController = modalController; this._storageController = storageController; diff --git a/ext/bg/js/settings/dictionary-import-controller.js b/ext/bg/js/settings/dictionary-import-controller.js index 22146ec1..a6499de9 100644 --- a/ext/bg/js/settings/dictionary-import-controller.js +++ b/ext/bg/js/settings/dictionary-import-controller.js @@ -24,7 +24,7 @@ */ class DictionaryImportController { - constructor(settingsController, modalController, storageController, statusFooter=null) { + constructor(settingsController, modalController, storageController, statusFooter) { this._settingsController = settingsController; this._modalController = modalController; this._storageController = storageController; diff --git a/ext/bg/js/settings/main.js b/ext/bg/js/settings/main.js index 635549f8..09df19e4 100644 --- a/ext/bg/js/settings/main.js +++ b/ext/bg/js/settings/main.js @@ -83,10 +83,10 @@ async function setupEnvironmentInfo() { const profileController = new ProfileController(settingsController, modalController); profileController.prepare(); - const dictionaryController = new DictionaryController(settingsController, modalController, storageController); + const dictionaryController = new DictionaryController(settingsController, modalController, storageController, null); dictionaryController.prepare(); - const dictionaryImportController = new DictionaryImportController(settingsController, modalController, storageController); + const dictionaryImportController = new DictionaryImportController(settingsController, modalController, storageController, null); dictionaryImportController.prepare(); const ankiController = new AnkiController(settingsController); |