diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index c85bbf0c2..292826a6d 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -12145,11 +12145,7 @@ } else { Navigate.updateBoard(boardID); } - if (Conf['Index Mode'] === 'paged' && pageNum) { - return Index.update(pageNum); - } else { - return Index.update(); - } + return Index.update(pageNum); } else { onload = function(e) { return Navigate.load(e); diff --git a/builds/crx/script.js b/builds/crx/script.js index 73f2c3e30..cd066205c 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -12134,11 +12134,7 @@ } else { Navigate.updateBoard(boardID); } - if (Conf['Index Mode'] === 'paged' && pageNum) { - return Index.update(pageNum); - } else { - return Index.update(); - } + return Index.update(pageNum); } else { onload = function(e) { return Navigate.load(e); diff --git a/src/General/Navigate.coffee b/src/General/Navigate.coffee index 16c8bda60..b284b4973 100644 --- a/src/General/Navigate.coffee +++ b/src/General/Navigate.coffee @@ -214,10 +214,7 @@ Navigate = else Navigate.updateBoard boardID - if Conf['Index Mode'] is 'paged' and pageNum - Index.update pageNum - else - Index.update() + Index.update pageNum # Moving from index to thread or thread to thread else