diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 188c43b10..ffc796092 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -12776,7 +12776,7 @@ path.shift(); } boardID = path[0], view = path[1], threadID = path[2]; - if (view === 'catalog') { + if (view === 'catalog' || boardID === 'f') { return; } if (e) { diff --git a/builds/crx/script.js b/builds/crx/script.js index e25885262..a62b6f79e 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -12753,7 +12753,7 @@ path.shift(); } boardID = path[0], view = path[1], threadID = path[2]; - if (view === 'catalog') { + if (view === 'catalog' || boardID === 'f') { return; } if (e) { diff --git a/src/General/Main.coffee b/src/General/Main.coffee index 2aee4641f..5e740bcd3 100755 --- a/src/General/Main.coffee +++ b/src/General/Main.coffee @@ -363,7 +363,7 @@ Main = path.shift() if path[0] is '' [boardID, view, threadID] = path - return if view is 'catalog' + return if view is 'catalog' or boardID is 'f' e.preventDefault() if e history.pushState null, '', @pathname unless @id is 'popState'