secondary changes

This commit is contained in:
Stoyan Zlatev 2025-06-25 11:54:06 +02:00
parent a7394d4869
commit 1a7932162f

View File

@ -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
{