diff --git a/4chan_x.user.js b/4chan_x.user.js index deb5936dd..2e0263fe1 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -2419,6 +2419,9 @@ if (this.online = navigator.onLine) { this.unsuccessfulFetchCount = 0; this.set('timer', this.getInterval()); + if (Conf['Auto Update This']) { + this.update(); + } this.set('status', null); this.status.className = null; } else { diff --git a/changelog b/changelog index 14c3cd712..d23d6883a 100644 --- a/changelog +++ b/changelog @@ -2,6 +2,7 @@ alpha - Mayhem Added touch and multi-touch support for dragging windows. The Thread Updater will pause when offline, and resume when online. + Recursive Hiding will be automatically applied when manually hiding a post. Fix Chrome's install warning that 4chan X would execute on all domains. Fix Quote Backlinks not affecting inlined quotes. Fix Quote Highlighting not affecting inlined quotes. diff --git a/src/features.coffee b/src/features.coffee index 90bfa7692..f76a7bb3e 100644 --- a/src/features.coffee +++ b/src/features.coffee @@ -1424,6 +1424,7 @@ ThreadUpdater = if @online = navigator.onLine @unsuccessfulFetchCount = 0 @set 'timer', @getInterval() + @update() if Conf['Auto Update This'] @set 'status', null @status.className = null else