Skip to content

Commit

Permalink
Update QRCoder/QRCodeGenerator.cs
Browse files Browse the repository at this point in the history
Co-authored-by: Günther Foidl <[email protected]>
  • Loading branch information
codebude and gfoidl authored Apr 19, 2024
1 parent b9dad0a commit 62e32a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QRCoder/QRCodeGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public static QRCodeData GenerateQrCode(byte[] binaryData, ECCLevel eccLevel)
sb.Append(DecToBin(b, 8));

}
bitString = sb.ToString();
string bitString = sb.ToString();


return GenerateQrCode(bitString, eccLevel, version);
Expand Down

0 comments on commit 62e32a9

Please sign in to comment.