From 3b905216dd5fc7365c014545265f552c6aa4e888 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Thu, 21 Jun 2012 23:46:26 +0200 Subject: [PATCH] Add /s-/soc/ archive redirection. --- 4chan_x.user.js | 1 + changelog | 1 + script.coffee | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index c48abe147..841065250 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -4069,6 +4069,7 @@ break; case 'cgl': case 'mu': + case 'soc': case 'w': url = "//archive.rebeccablacktech.com/" + path; if (threadID && postID) { diff --git a/changelog b/changelog index 64c3f88c2..c6788fef8 100644 --- a/changelog +++ b/changelog @@ -1,6 +1,7 @@ master - Mayhem After 1000+ characters, a character counter will appear in the QR. + Add /soc/ archive redirection. 2.33.1 - Mayhem diff --git a/script.coffee b/script.coffee index 9150f8018..14677eea7 100644 --- a/script.coffee +++ b/script.coffee @@ -3186,7 +3186,7 @@ Redirect = url = "//archive.installgentoo.net/#{path}" if threadID and postID url += "#p#{postID}" - when 'cgl', 'mu', 'w' + when 'cgl', 'mu', 'soc', 'w' url = "//archive.rebeccablacktech.com/#{path}" if threadID and postID url += "#p#{postID}"