diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-03-04 20:10:49 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-03-04 20:10:49 -0800 |
commit | 5daf2accf4d6628131cd8e054ca6258a669eb715 (patch) | |
tree | 86c7eb89e3fe44ddf707cba6337b8ad106375468 /ext/bg/js | |
parent | e799aa5e5f7dd526214b8e55de86f525cefec3ee (diff) |
wip
Diffstat (limited to 'ext/bg/js')
-rw-r--r-- | ext/bg/js/options.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index eb8e32d8..5f564b33 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -187,7 +187,7 @@ function onDictionaryPurge(e) { return optionsLoad(); }).then(options => { options.dictionaries = {}; - return optionsSave(options).then(populateDictionaries); + return optionsSave(options).then(() => populateDictionaries(options)); }); } |