From 1a7932162fa3fe985a782210c07e016824247a80 Mon Sep 17 00:00:00 2001 From: Stoyan Zlatev Date: Wed, 25 Jun 2025 11:54:06 +0200 Subject: [PATCH] secondary changes --- .../MeterProcessState/Controllers/FinalCheckController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Common/Service/MeterProcessState/Controllers/FinalCheckController.cs b/Common/Service/MeterProcessState/Controllers/FinalCheckController.cs index 2742f961..7a44967d 100644 --- a/Common/Service/MeterProcessState/Controllers/FinalCheckController.cs +++ b/Common/Service/MeterProcessState/Controllers/FinalCheckController.cs @@ -1412,7 +1412,8 @@ namespace Xylem.Common.Service.MeterProcessState.Controllers Array.Resize(ref hexBytes, 2); Array.Reverse(hexBytes); - calFactor = Convert.ToUInt16(string.Join(string.Empty, hexBytes), 16); + hexString = string.Join(string.Empty, hexBytes); + calFactor = Convert.ToUInt16(hexString, 16); } catch {