mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-14 04:57:15 +00:00
Switched to using Endpoint.IsOnline instead of EndpointOnlineFeedback for blade chassis as EndpointOnlineFeedback seems to be broken.
This commit is contained in:
parent
f44bde2d83
commit
419d956a8d
1 changed files with 4 additions and 2 deletions
|
|
@ -177,8 +177,10 @@ namespace PepperDash.Essentials.DM {
|
||||||
});
|
});
|
||||||
|
|
||||||
OutputEndpointOnlineFeedbacks[tempX] = new BoolFeedback(() => {
|
OutputEndpointOnlineFeedbacks[tempX] = new BoolFeedback(() => {
|
||||||
CrestronConsole.PrintLine("GotHere 5");
|
if (Chassis.Outputs[tempX].Endpoint != null)
|
||||||
return Chassis.Outputs[tempX].EndpointOnlineFeedback;
|
return Chassis.Outputs[tempX].Endpoint.IsOnline;
|
||||||
|
else
|
||||||
|
return Chassis.Outputs[tempX].EndpointOnlineFeedback;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue