Skip to content

Commit 76573c7

Browse files
committed
port SHA-1: 8944e607789b0847625f9962e90aab9901c731cd
* Fix SYMBOLOGY_IDENTIFIER loss in QRCodeMultiReader (#1839)
1 parent 4f3dc4b commit 76573c7

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Source/lib/Properties/AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
#if NETFX_CORE && !WINDOWS_UWP
5353
[assembly: AssemblyTitle("zxing.net for windows rt")]
5454
#endif
55-
[assembly: AssemblyDescription("port of the java based barcode scanning library for .net (java zxing 02.05.2024 06:11:39)")]
55+
[assembly: AssemblyDescription("port of the java based barcode scanning library for .net (java zxing 02.08.2024 03:57:31)")]
5656
[assembly: AssemblyCompany("ZXing.Net Development")]
5757
[assembly: AssemblyProduct("ZXing.Net")]
5858
[assembly: AssemblyCopyright("Copyright © 2012")]

Source/lib/multi/qrcode/QRCodeMultiReader.cs

+3
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ public Result[] decodeMultiple(BinaryBitmap image, IDictionary<DecodeHintType, o
8585
result.putMetadata(ResultMetadataType.STRUCTURED_APPEND_SEQUENCE, decoderResult.StructuredAppendSequenceNumber);
8686
result.putMetadata(ResultMetadataType.STRUCTURED_APPEND_PARITY, decoderResult.StructuredAppendParity);
8787
}
88+
// Fix SYMBOLOGY_IDENTIFIER loss in QRCodeMultiReader
89+
result.putMetadata(ResultMetadataType.SYMBOLOGY_IDENTIFIER, "]Q" + decoderResult.SymbologyModifier);
90+
8891
results.Add(result);
8992
}
9093
if (results.Count == 0)

0 commit comments

Comments
 (0)