file: ZXing.OneD.UPCEANExtension2Support line: 144 current: ` resultString.Append('0' + IntToStr(bestMatch mod 10));` should be: ` resultString.Append(IntToStr(bestMatch mod 10));`
file: ZXing.OneD.UPCEANExtension2Support
line: 144
current:
resultString.Append('0' + IntToStr(bestMatch mod 10));should be:
resultString.Append(IntToStr(bestMatch mod 10));