diff --git a/4chan_x.user.js b/4chan_x.user.js index 0ea4d7725..2d257d664 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -2706,7 +2706,9 @@ redirect = function() { var url; switch (g.BOARD) { + case 'diy': case 'g': + case 'pol': case 'sci': url = "http://archive.installgentoo.net/cgi-board.pl/" + g.BOARD + "/thread/" + g.THREAD_ID; break; diff --git a/changelog b/changelog index d6022eeaf..7863bc30c 100644 --- a/changelog +++ b/changelog @@ -2,7 +2,7 @@ master - mayhem initiate 4chan X earlier automatically reload expanded pictures on error - update /sci/ archive redirection + update archives redirections for /diy/, /pol/ and /sci/ regular expressions based filter handle bans with the thread updater performance improvements diff --git a/script.coffee b/script.coffee index 4c10b53f3..ec126ce42 100644 --- a/script.coffee +++ b/script.coffee @@ -2027,7 +2027,7 @@ Favicon = redirect = -> switch g.BOARD - when 'g', 'sci' + when 'diy', 'g', 'pol', 'sci' url = "http://archive.installgentoo.net/cgi-board.pl/#{g.BOARD}/thread/#{g.THREAD_ID}" when 'lit', 'tv' url = "http://archive.gentoomen.org/cgi-board.pl/#{g.BOARD}/thread/#{g.THREAD_ID}"