diff --git a/4chan_x.user.js b/4chan_x.user.js index 9a87aa47f..c22a1920e 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -3277,6 +3277,7 @@ case 'tg': case 'tv': case 'u': + case 'v': return "http://archive.foolz.us/" + g.BOARD + "/thread/" + g.THREAD_ID + "/"; case 'lit': return "http://fuuka.warosu.org/" + g.BOARD + "/thread/" + g.THREAD_ID; @@ -3304,7 +3305,6 @@ case 'sp': case 'toy': case 'trv': - case 'v': case 'vp': case 'x': return "http://archive.no-ip.org/" + g.BOARD + "/thread/" + g.THREAD_ID; diff --git a/changelog b/changelog index 44edf27b5..c06bd42ad 100644 --- a/changelog +++ b/changelog @@ -1,6 +1,7 @@ master - Mayhem Fix post number quoting on /b/ and /v/. + Update archive redirection for /v/. 2.26.1 - Mayhem diff --git a/script.coffee b/script.coffee index dec0c1203..0ef7eb769 100644 --- a/script.coffee +++ b/script.coffee @@ -2572,13 +2572,13 @@ redirect = thread: -> return unless conf['404 Redirect'] switch g.BOARD - when 'a', 'jp', 'm', 'tg', 'tv', 'u' + when 'a', 'jp', 'm', 'tg', 'tv', 'u', 'v' "http://archive.foolz.us/#{g.BOARD}/thread/#{g.THREAD_ID}/" when 'lit' "http://fuuka.warosu.org/#{g.BOARD}/thread/#{g.THREAD_ID}" when 'diy', 'g', 'sci' "http://archive.installgentoo.net/#{g.BOARD}/thread/#{g.THREAD_ID}" - when '3', 'adv', 'an', 'ck', 'co', 'fa', 'fit', 'int', 'k', 'mu', 'n', 'o', 'p', 'po', 'pol', 'r9k', 'soc', 'sp', 'toy', 'trv', 'v', 'vp', 'x' + when '3', 'adv', 'an', 'ck', 'co', 'fa', 'fit', 'int', 'k', 'mu', 'n', 'o', 'p', 'po', 'pol', 'r9k', 'soc', 'sp', 'toy', 'trv', 'vp', 'x' "http://archive.no-ip.org/#{g.BOARD}/thread/#{g.THREAD_ID}" else "http://boards.4chan.org/#{g.BOARD}/"