mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-07 16:55:04 +00:00
Switched to using Endpoint.IsOnline instead of EndpointOnlineFeedback for blade chassis as EndpointOnlineFeedback seems to be broken.
This commit is contained in:
@@ -177,8 +177,10 @@ namespace PepperDash.Essentials.DM {
|
||||
});
|
||||
|
||||
OutputEndpointOnlineFeedbacks[tempX] = new BoolFeedback(() => {
|
||||
CrestronConsole.PrintLine("GotHere 5");
|
||||
return Chassis.Outputs[tempX].EndpointOnlineFeedback;
|
||||
if (Chassis.Outputs[tempX].Endpoint != null)
|
||||
return Chassis.Outputs[tempX].Endpoint.IsOnline;
|
||||
else
|
||||
return Chassis.Outputs[tempX].EndpointOnlineFeedback;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user