diff --git a/4chan_x.user.js b/4chan_x.user.js index 62e409baf..e85cba04b 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -1566,7 +1566,7 @@ checkbox = config.updater.checkbox; for (name in checkbox) { title = checkbox[name][1]; - checked = checkbox[name] ? 'checked' : ''; + checked = conf[name] ? 'checked' : ''; html += "
"; } checked = conf['Auto Update'] ? 'checked' : ''; diff --git a/changelog b/changelog index 79f7cc311..bb4fce7a7 100644 --- a/changelog +++ b/changelog @@ -1,4 +1,6 @@ github +- mayhem: + - fix updater's custom settings 2.16.0 - mayhem: diff --git a/script.coffee b/script.coffee index a3f24cb42..49d8924f4 100644 --- a/script.coffee +++ b/script.coffee @@ -1272,7 +1272,7 @@ updater = {checkbox} = config.updater for name of checkbox title = checkbox[name][1] - checked = if checkbox[name] then 'checked' else '' + checked = if conf[name] then 'checked' else '' html += "
" checked = if conf['Auto Update'] then 'checked' else ''