Skip to content

Commit

Permalink
Merge pull request #855 from WildernessLabs/jorge-build-fix
Browse files Browse the repository at this point in the history
Update pressure handler
  • Loading branch information
adrianstevens authored Dec 8, 2023
2 parents 756d5b9 + 43c6d35 commit 7932c33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ protected override void RaiseEventsAndNotify(IChangeResult<(Units.Temperature? T
}
if (changeResult.New.Pressure is { } pressure)
{
PressureUpdated?.Invoke(this, new ChangeResult<Pressure>(pressure, changeResult.Old?.Pressure));
_pressureHandlers?.Invoke(this, new ChangeResult<Pressure>(pressure, changeResult.Old?.Pressure));
}
if (changeResult.New.GasResistance is { } gasResistance)
{
Expand Down

0 comments on commit 7932c33

Please sign in to comment.