mirror of
https://github.com/zxing/zxing.git
synced 2024-11-09 20:44:03 -08:00
Fix SYMBOLOGY_IDENTIFIER loss in QRCodeMultiReader (#1839)
This commit is contained in:
parent
6ea3726b33
commit
8944e60778
|
@ -83,6 +83,9 @@ public final class QRCodeMultiReader extends QRCodeReader implements MultipleBar
|
|||
result.putMetadata(ResultMetadataType.STRUCTURED_APPEND_PARITY,
|
||||
decoderResult.getStructuredAppendParity());
|
||||
}
|
||||
// Fix SYMBOLOGY_IDENTIFIER loss in QRCodeMultiReader
|
||||
result.putMetadata(ResultMetadataType.SYMBOLOGY_IDENTIFIER, "]Q" + decoderResult.getSymbologyModifier());
|
||||
|
||||
results.add(result);
|
||||
} catch (ReaderException re) {
|
||||
// ignore and continue
|
||||
|
|
Loading…
Reference in a new issue