From 795032c2650ddd498e30adc81daf4a011cf97119 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Wed, 29 Feb 2012 18:57:25 +0100 Subject: [PATCH] Add an extra space at the end of the captcha response. --- 4chan_x.user.js | 2 +- script.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index 4bdf446de..ce47054d8 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -1856,7 +1856,7 @@ mode: 'regist', pwd: (m = d.cookie.match(/4chan_pass=([^;]+)/)) ? decodeURIComponent(m[1]) : $('[name=pwd]').value, recaptcha_challenge_field: challenge, - recaptcha_response_field: response + recaptcha_response_field: response + ' ' }; qr.status({ progress: '...' diff --git a/script.coffee b/script.coffee index 92c6ca415..5901d473e 100644 --- a/script.coffee +++ b/script.coffee @@ -1490,7 +1490,7 @@ qr = mode: 'regist' pwd: if m = d.cookie.match(/4chan_pass=([^;]+)/) then decodeURIComponent m[1] else $('[name=pwd]').value recaptcha_challenge_field: challenge - recaptcha_response_field: response + recaptcha_response_field: response + ' ' # Starting to upload might take some time. # Provide some feedback that we're starting to submit.