Fixes Code 39 decoding where parts of the results are skipped. Relates to #41

This commit is contained in:
Christoph Oberhofer
2015-11-15 21:28:43 +01:00
parent 7a3fc1e66c
commit 79356dcdbd
9 changed files with 20 additions and 12 deletions
+1
View File
@@ -116,6 +116,7 @@ Code39Reader.prototype._patternToChar = function(pattern) {
return String.fromCharCode(self.ALPHABET[i]);
}
}
return -1;
};
Code39Reader.prototype._findNextWidth = function(counters, current) {