diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index 119db1279..33724273f 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -16375,6 +16375,11 @@ return; } if (this.pathname === Navigate.path) { + if (g.VIEW === 'thread') { + ThreadUpdater.update(); + } else { + Index.update(); + } e.preventDefault(); return; } diff --git a/builds/crx/script.js b/builds/crx/script.js index c488a9184..f6c267303 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -16395,6 +16395,11 @@ return; } if (this.pathname === Navigate.path) { + if (g.VIEW === 'thread') { + ThreadUpdater.update(); + } else { + Index.update(); + } e.preventDefault(); return; } diff --git a/src/General/Navigate.coffee b/src/General/Navigate.coffee index e37e7f4d4..bf052b600 100644 --- a/src/General/Navigate.coffee +++ b/src/General/Navigate.coffee @@ -153,7 +153,13 @@ Navigate = navigate: (e) -> return if @hostname isnt 'boards.4chan.org' or window.location.hostname is 'rs.4chan.org' return if e and (e.shiftKey or e.ctrlKey or (e.type is 'click' and e.button isnt 0)) # Not simply a left click + + if @pathname is Navigate.path + if g.VIEW is 'thread' + ThreadUpdater.update() + else + Index.update() e.preventDefault() return