Skip to content

Commit

Permalink
port SHA-1: 8944e607789b0847625f9962e90aab9901c731cd
Browse files Browse the repository at this point in the history
* Fix SYMBOLOGY_IDENTIFIER loss in QRCodeMultiReader (#1839)
  • Loading branch information
micjahn committed Dec 30, 2024
1 parent 4f3dc4b commit 76573c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Source/lib/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
#if NETFX_CORE && !WINDOWS_UWP
[assembly: AssemblyTitle("zxing.net for windows rt")]
#endif
[assembly: AssemblyDescription("port of the java based barcode scanning library for .net (java zxing 02.05.2024 06:11:39)")]
[assembly: AssemblyDescription("port of the java based barcode scanning library for .net (java zxing 02.08.2024 03:57:31)")]
[assembly: AssemblyCompany("ZXing.Net Development")]
[assembly: AssemblyProduct("ZXing.Net")]
[assembly: AssemblyCopyright("Copyright © 2012")]
Expand Down
3 changes: 3 additions & 0 deletions Source/lib/multi/qrcode/QRCodeMultiReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ public Result[] decodeMultiple(BinaryBitmap image, IDictionary<DecodeHintType, o
result.putMetadata(ResultMetadataType.STRUCTURED_APPEND_SEQUENCE, decoderResult.StructuredAppendSequenceNumber);
result.putMetadata(ResultMetadataType.STRUCTURED_APPEND_PARITY, decoderResult.StructuredAppendParity);
}
// Fix SYMBOLOGY_IDENTIFIER loss in QRCodeMultiReader
result.putMetadata(ResultMetadataType.SYMBOLOGY_IDENTIFIER, "]Q" + decoderResult.SymbologyModifier);

results.Add(result);
}
if (results.Count == 0)
Expand Down

0 comments on commit 76573c7

Please sign in to comment.