We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36c15b8 commit 14cd082Copy full SHA for 14cd082
1 file changed
src/PepperDash.Essentials.Core/Routing/Extensions.cs
@@ -348,9 +348,9 @@ public static void MapDestinationsToSources()
348
var sources = DeviceManager.AllDevices.OfType<IRoutingOutputs>()
349
.Where(d => !(d is IRoutingInputsOutputs)).ToList();
350
351
- foreach (var sink in sinks.Where(d => !(d is IRoutingInputsOutputs)))
+ foreach (var sink in sinks)
352
{
353
- foreach (var source in sources.Where(d => !(d is IRoutingInputsOutputs)))
+ foreach (var source in sources)
354
355
foreach (var inputPort in sink.InputPorts)
356
0 commit comments