remove fake nullables from status record

This commit is contained in:
ig 2023-08-25 17:18:26 +02:00
parent 4907654841
commit 9a400d992d
1 changed files with 4 additions and 7 deletions

View File

@ -130,15 +130,15 @@ internal static class Program
return new StatusRecord return new StatusRecord
{ {
AcDc = acDc ?? AcDcDevicesRecord.Null, AcDc = acDc ,
DcDc = dcDc ?? DcDcDevicesRecord.Null, DcDc = dcDc ,
Battery = battery ?? Battery48TlRecords.Null, Battery = battery ,
Relays = relays, Relays = relays,
GridMeter = gridMeter, GridMeter = gridMeter,
PvOnAcGrid = pvOnAcGrid, PvOnAcGrid = pvOnAcGrid,
PvOnAcIsland = pvOnAcIsland, PvOnAcIsland = pvOnAcIsland,
PvOnDc = pvOnDc ?? AmptStatus.Null, PvOnDc = pvOnDc,
AcGridToAcIsland = new AcPowerDevice { Power = gridBusToIslandBusPower }, AcGridToAcIsland = new AcPowerDevice { Power = gridBusToIslandBusPower },
LoadOnAcGrid = new AcPowerDevice { Power = loadOnAcGrid }, LoadOnAcGrid = new AcPowerDevice { Power = loadOnAcGrid },
@ -213,9 +213,6 @@ internal static class Program
record.Config.Save(); record.Config.Save();
"===========================================".LogInfo(); "===========================================".LogInfo();
return record; return record;