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/settings2/settings-main.js | |
parent | e03380108983ee5ff82b4b10b08b31c78208370c (diff) |
Fix storage stats update error during dictionary deletion (#1106)
Diffstat (limited to 'ext/bg/js/settings2/settings-main.js')
-rw-r--r-- | ext/bg/js/settings2/settings-main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/settings2/settings-main.js b/ext/bg/js/settings2/settings-main.js index da2d1c2d..f86764bc 100644 --- a/ext/bg/js/settings2/settings-main.js +++ b/ext/bg/js/settings2/settings-main.js @@ -74,7 +74,7 @@ async function setupGenericSettingsController(genericSettingController) { const storageController = new StorageController(); storageController.prepare(); - const dictionaryController = new DictionaryController(settingsController, modalController, statusFooter); + const dictionaryController = new DictionaryController(settingsController, modalController, storageController, statusFooter); dictionaryController.prepare(); const dictionaryImportController = new DictionaryImportController(settingsController, modalController, storageController, statusFooter); |