From 4829b307fe5543948d5b832e8d74c17ce6dd3212 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Sun, 1 Jul 2012 12:43:13 +0200 Subject: [PATCH] Add /ck/ archive redirection. --- 4chan_x.user.js | 1 + changelog | 2 ++ script.coffee | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index b8c7ecc7f..e8b6a84c0 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -4078,6 +4078,7 @@ url += "#" + postID; } break; + case 'ck': case 'lit': url = "//fuuka.warosu.org/" + path; if (threadID && postID) { diff --git a/changelog b/changelog index cb8e24540..1e729c4d5 100644 --- a/changelog +++ b/changelog @@ -1,4 +1,6 @@ master +- Mayhem + Add /ck/ archive redirection. 2.33.6 - Mayhem diff --git a/script.coffee b/script.coffee index 7f1fdc994..0ef144d36 100644 --- a/script.coffee +++ b/script.coffee @@ -3181,7 +3181,7 @@ Redirect = url = "//nsfw.foolz.us/#{path}/" if threadID and postID url += "##{postID}" - when 'lit' + when 'ck', 'lit' url = "//fuuka.warosu.org/#{path}" if threadID and postID url += "#p#{postID}"