Error "code length overflow" ""solved""?
Hi, after successfully implementing this library into my project, sometimes I got this error. I finally realized it always happened when the encoded string contained non-US ASCII characters (p.e. á, ñ, í....)
Surprisingly this error occurred only with the minified version of the library.
Replacing the minified version for the full version solves this issue!
Thanks for your issue, you saved my time !! After a closer look this behavior has a logical explanation : Last edit
- qrcode.js : 9 months ago
- qrcode.min.js : 2 years ago
Get the same problem today.Thanks for your solution.
Thanks for your issue,your issue help me solve the same problem.
https://github.com/davidshimjs/qrcodejs/edit/master/qrcode.js get qrcode.js replace the old
Hi, after successfully implementing this library into my project, sometimes I got this error. I finally realized it always happened when the encoded string contained non-US ASCII characters (p.e. á, ñ, í....)
Surprisingly this error occurred only with the minified version of the library.
Replacing the minified version for the full version solves this issue!
This worked for me! Thanks
Another workaround may be to decrease correctLevel, e.g.: correctLevel: QRCode.CorrectLevel.L
Another workaround may be to decrease correctLevel, e.g.:
correctLevel: QRCode.CorrectLevel.L
This worked very good for me, thanks!