File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
ui/src/main/java/io/snabble/sdk/ui/scanner Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22All notable changes to this project will be documented in this file.
33
4+ ## [ 0.33.10]
5+
6+ ### Fixed
7+ - Endless recursion when handling unknown gs1 codes
8+
49## [ 0.33.9]
510
611### Fixed
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ allprojects {
2929 }
3030
3131 project. ext {
32- sdkVersion= ' 0.33.9 '
32+ sdkVersion= ' 0.33.10 '
3333 versionCode= 1
3434
3535 compileSdkVersion= 30
Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ public void onError() {
214214 }
215215 }
216216
217- if (gs1GtinScannedCodes .size () > 0 ) {
217+ if (gs1GtinScannedCodes .size () > 0 && gs1Code == null ) {
218218 lookupAndShowProduct (gs1GtinScannedCodes , newGs1Code );
219219 } else {
220220 project .getEvents ().productNotFound (scannedCodes );
You can’t perform that action at this time.
0 commit comments