fix: add previous condition back to the flag check

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Andrew Welker
2025-04-04 10:49:04 -05:00
committed by GitHub
parent c9f10ecb90
commit c5403f33c5

View File

@@ -278,7 +278,7 @@ namespace PepperDash.Essentials.Core
if (destinationPort == null) if (destinationPort == null)
{ {
destinationTieLines = TieLineCollection.Default.Where(t => destinationTieLines = TieLineCollection.Default.Where(t =>
t.DestinationPort.ParentDevice.Key == destination.Key && (t.Type.HasFlag(signalType))); t.DestinationPort.ParentDevice.Key == destination.Key && (t.Type.HasFlag(signalType) || signalType == eRoutingSignalType.AudioVideo));
} }
else else
{ {