aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/js/settings2
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-12-13 11:29:32 -0500
committerGitHub <noreply@github.com>2020-12-13 11:29:32 -0500
commit5d2edda7534360def79921eb9d38ef72b4f6da04 (patch)
treeda4c6712e0900d1850350817b152c47c14d227df /ext/bg/js/settings2
parent48b8041800cc6a291f1addff59b7380434f89a87 (diff)
Fix storage stats update error during dictionary deletion (#1106)
Diffstat (limited to 'ext/bg/js/settings2')
-rw-r--r--ext/bg/js/settings2/settings-main.js2
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);