From 62e32a9449ae4105ec155c6d89e0f392a017b4b0 Mon Sep 17 00:00:00 2001 From: Raffael Herrmann Date: Fri, 19 Apr 2024 22:30:52 +0200 Subject: [PATCH] Update QRCoder/QRCodeGenerator.cs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Günther Foidl --- QRCoder/QRCodeGenerator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QRCoder/QRCodeGenerator.cs b/QRCoder/QRCodeGenerator.cs index 3d76f5a9..02ea4193 100644 --- a/QRCoder/QRCodeGenerator.cs +++ b/QRCoder/QRCodeGenerator.cs @@ -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);