Fixed EAN-8 Decoding Error

This commit is contained in:
Christoph Oberhofer
2015-05-05 19:25:48 +02:00
parent 529bb33013
commit 0e0cfcea00
4 changed files with 33 additions and 33 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ define(
self = this;
for ( i = 0; i < 4; i++) {
code = self._decodeCode(code.end);
code = self._decodeCode(code.end, self.CODE_G_START);
result.push(code.code);
decodedCodes.push(code);
}