davidshimjs/qrcodejs

Indexoutofbounds exception

OsmondGao opened this issue · 1 comments

in line-473,
for (var i = 0, len = QRCodeLimitLength.length; i <= len; i++) {
I don't think i can get QRCodeLimitLength.length, correct maybe like this
for (var i = 0, len = QRCodeLimitLength.length; i < len; i++) {

I implemented your solution in my post recent pull request!

Thank you so much!