diff --git a/LICENSE b/LICENSE index 1303ecdbd..02b0fc882 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ /* -* appchan x - Version 2.9.12 - 2014-04-04 +* appchan x - Version 2.9.12 - 2014-04-05 * * Licensed under the MIT license. * https://github.com/zixaphir/appchan-x/blob/master/LICENSE diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index a049a409e..9b57320e9 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -25,7 +25,7 @@ // ==/UserScript== /* -* appchan x - Version 2.9.12 - 2014-04-04 +* appchan x - Version 2.9.12 - 2014-04-05 * * Licensed under the MIT license. * https://github.com/zixaphir/appchan-x/blob/master/LICENSE @@ -9493,6 +9493,10 @@ if (!(Conf['Persistent QR'] || QR.cooldown.auto)) { QR.close(); } else { + if (QR.posts.length > 1) { + QR.captcha.setup(); + QR.captcha.afterSetup(); + } post.rm(); } QR.cooldown.set({ diff --git a/builds/crx/script.js b/builds/crx/script.js index 0f0f5ea6b..39dbca237 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -1,6 +1,6 @@ // Generated by CoffeeScript /* -* appchan x - Version 2.9.12 - 2014-04-04 +* appchan x - Version 2.9.12 - 2014-04-05 * * Licensed under the MIT license. * https://github.com/zixaphir/appchan-x/blob/master/LICENSE @@ -9537,6 +9537,10 @@ if (!(Conf['Persistent QR'] || QR.cooldown.auto)) { QR.close(); } else { + if (QR.posts.length > 1) { + QR.captcha.setup(); + QR.captcha.afterSetup(); + } post.rm(); } QR.cooldown.set({ diff --git a/src/Posting/QR.coffee b/src/Posting/QR.coffee index f7ab67614..d3dc4664d 100644 --- a/src/Posting/QR.coffee +++ b/src/Posting/QR.coffee @@ -814,6 +814,9 @@ QR = unless Conf['Persistent QR'] or QR.cooldown.auto QR.close() else + if QR.posts.length > 1 + QR.captcha.setup() + QR.captcha.afterSetup() post.rm() QR.cooldown.set {req, post, isReply, threadID}