We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Like #144
file: ZXing.OneD.UPCEANExtension5Support line: 160
current:
resultString.Append('0' + IntToStr(bestMatch mod 10));
should be:
resultString.Append(IntToStr(bestMatch mod 10));
The text was updated successfully, but these errors were encountered:
UPCEANExtension5 decode error #145
7384b36
No branches or pull requests
Like #144
file: ZXing.OneD.UPCEANExtension5Support
line: 160
current:
resultString.Append('0' + IntToStr(bestMatch mod 10));
should be:
resultString.Append(IntToStr(bestMatch mod 10));
The text was updated successfully, but these errors were encountered: