CUST: - FwUpdateSw: - handling appId as UInt16 instead of Byte

This commit is contained in:
Thomas Wiedebusch 2025-08-06 12:39:01 +02:00
parent 6a88734902
commit 3f53efa965

View File

@ -1000,7 +1000,7 @@ namespace Xylem.ServiceFwUpdate.Ui.ServiceFwUpdateSw
var row = _dataTable.NewRow();
//application information read from configuration
row[Resources.StrTableAppName] = meterApp.AppName;
row[Resources.StrTableAppId] = MeterFwUpdate.ConvertAppIdToString(meterApp.AppId);
row[Resources.StrTableAppId] = MeterFwUpdate.ConvertAppIdToString((Byte)meterApp.AppId);
_dataTable.Rows.Add(row);
}