From da5c9974e6ff7f5cfba195bd4e5dc69c3adc2303 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Thu, 1 May 2014 02:58:03 -0700 Subject: [PATCH] max image dimensions are now 10000x10000 --- src/Posting/QR.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Posting/QR.coffee b/src/Posting/QR.coffee index f1bee437c..48bc85c3e 100644 --- a/src/Posting/QR.coffee +++ b/src/Posting/QR.coffee @@ -488,7 +488,7 @@ QR = rules = $('ul.rules').textContent.trim() QR.min_width = QR.min_height = 1 - QR.max_width = QR.max_height = 5000 + QR.max_width = QR.max_height = 10000 try [_, QR.min_width, QR.min_height] = rules.match(/.+smaller than (\d+)x(\d+).+/) [_, QR.max_width, QR.max_height] = rules.match(/.+greater than (\d+)x(\d+).+/)