Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
mobile_scanner
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
1148648777@qq.com
2023-04-13 20:13:40 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7adc4de7a647c1d01d3f1c9f4aa2973ec5fcf7c9
7adc4de7
1 parent
6035379c
fix(onDetect): Fixed bug where onDetect method was being called multiple times.
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
android/src/main/kotlin/dev/steenbakker/mobile_scanner/MobileScanner.kt
android/src/main/kotlin/dev/steenbakker/mobile_scanner/MobileScanner.kt
View file @
7adc4de
...
...
@@ -64,7 +64,7 @@ class MobileScanner(
// New scanned is duplicate, returning
return@addOnSuccessListener
}
lastScanned = newScannedBarcodes
if (newScannedBarcodes.isNotEmpty())
lastScanned = newScannedBarcodes
}
val barcodeMap: MutableList<Map<String, Any?>> = mutableListOf()
...
...
Please
register
or
login
to post a comment