mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 04:26:49 +00:00
Efforts to debug exceptions thrown on bridge string sigs 101-108 and 301-308
This commit is contained in:
parent
1acb3a20c5
commit
bdf3e2054f
4 changed files with 131 additions and 76 deletions
|
|
@ -172,7 +172,7 @@ namespace PepperDash.Essentials.DM
|
|||
return Chassis.Inputs[tempX].VideoDetectedFeedback.BoolValue;
|
||||
});
|
||||
InputNameFeedbacks[tempX] = new StringFeedback(() => {
|
||||
if (Chassis.Inputs[tempX].NameFeedback.StringValue != null)
|
||||
if (Chassis.Inputs[tempX].NameFeedback != null)
|
||||
{
|
||||
return Chassis.Inputs[tempX].NameFeedback.StringValue;
|
||||
}
|
||||
|
|
@ -182,7 +182,7 @@ namespace PepperDash.Essentials.DM
|
|||
}
|
||||
});
|
||||
OutputNameFeedbacks[tempX] = new StringFeedback(() => {
|
||||
if (Chassis.Outputs[tempX].NameFeedback.StringValue != null)
|
||||
if (Chassis.Outputs[tempX].NameFeedback != null)
|
||||
{
|
||||
return Chassis.Outputs[tempX].NameFeedback.StringValue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue