Skip to content

Commit b9dad0a

Browse files
codebudegfoidl
andauthored
Update QRCoder/QRCodeGenerator.cs
Co-authored-by: Günther Foidl <[email protected]>
1 parent c85200c commit b9dad0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

QRCoder/QRCodeGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public static QRCodeData GenerateQrCode(byte[] binaryData, ECCLevel eccLevel)
173173
string countIndicator = DecToBin(binaryData.Length, GetCountIndicatorLength(version, EncodingMode.Byte));
174174

175175
StringBuilder sb = new StringBuilder();
176-
sb.Append(modeIndicator + countIndicator);
176+
sb.Append(modeIndicator).Append(countIndicator);
177177
foreach (byte b in binaryData)
178178
{
179179
sb.Append(DecToBin(b, 8));

0 commit comments

Comments
 (0)