You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error encountered is:
Uncaught (in promise) Error: code length overflow. (1756>1056)
Furthermore, we confirmed this behavior on for example the website Vue QR Code Component. Any input within the specified character range fails to produce a QR code.
I also tested this on Codepen. QR Code Codepen
The text was updated successfully, but these errors were encountered:
We've observed that URLs or strings ranging from 192 to 217 characters fail to generate a QR code. The issue stems from a specific line in the code:
javascript
if(buffer.getLengthInBits()+4<=totalDataCount*8){buffer.put(0,4);}
The error encountered is:
Uncaught (in promise) Error: code length overflow. (1756>1056)
Furthermore, we confirmed this behavior on for example the website Vue QR Code Component. Any input within the specified character range fails to produce a QR code.
I also tested this on Codepen. QR Code Codepen
The text was updated successfully, but these errors were encountered: