diff --git a/src/General/Navigate.coffee b/src/General/Navigate.coffee index 5ba1d48e1..2f323083c 100644 --- a/src/General/Navigate.coffee +++ b/src/General/Navigate.coffee @@ -154,7 +154,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