diff --git a/4chan_x.user.js b/4chan_x.user.js index 41691d22b..86c08ba9c 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -1597,7 +1597,7 @@ } }, autoUpdate: function() { - if (conf['Auto Update This']) { + if (this.checked) { return updater.intervalID = window.setInterval(updater.timeout, 1000); } else { return window.clearInterval(updater.intervalID); diff --git a/script.coffee b/script.coffee index c45080955..18054b163 100644 --- a/script.coffee +++ b/script.coffee @@ -1293,7 +1293,7 @@ updater = textContent: 'Thread Updater' $.hide updater.timer autoUpdate: -> - if conf['Auto Update This'] + if @checked updater.intervalID = window.setInterval updater.timeout, 1000 else window.clearInterval updater.intervalID