diff options
Diffstat (limited to 'ext/js/data')
| -rw-r--r-- | ext/js/data/options-util.js | 10 | 
1 files changed, 9 insertions, 1 deletions
| diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js index c31ae680..334445c6 100644 --- a/ext/js/data/options-util.js +++ b/ext/js/data/options-util.js @@ -458,7 +458,8 @@ class OptionsUtil {              {async: true,  update: this._updateVersion6.bind(this)},              {async: false, update: this._updateVersion7.bind(this)},              {async: true,  update: this._updateVersion8.bind(this)}, -            {async: false, update: this._updateVersion9.bind(this)} +            {async: false, update: this._updateVersion9.bind(this)}, +            {async: false, update: this._updateVersion10.bind(this)}          ];      } @@ -748,4 +749,11 @@ class OptionsUtil {          }          return options;      } + +    _updateVersion10(options) { +        // Version 10 changes: +        //  Removed global option useSettingsV2. +        delete options.global.useSettingsV2; +        return options; +    }  } |