diff --git a/js/coinbin.js b/js/coinbin.js index 23ba6b8..958f696 100644 --- a/js/coinbin.js +++ b/js/coinbin.js @@ -936,7 +936,7 @@ $(document).ready(function() { var w = (screen.availWidth > screen.availHeight ? screen.availWidth : screen.availHeight)/3; var qrcode = new QRCode("qrcode", {width:w, height:w}); qrstr = $(ta).val(); - if(qrstr.length > 2000){ + if(qrstr.length > 1024){ $("#qrcode").html("

Sorry the data is too long for the QR generator.

"); } } else {