fix: correct namespaces to allow plugins to load correctly

This commit is contained in:
Andrew Welker
2024-05-23 12:45:47 -05:00
parent 8255328be1
commit 3c5fe88e5a
34 changed files with 20 additions and 38 deletions

View File

@@ -26,7 +26,7 @@ namespace PepperDash.Essentials.Core.Routing
private void SubscribeForSinkFeedback()
{
var sinkDevices = DeviceManager.AllDevices.OfType<IRoutingSinkWithSwitching>();
var sinkDevices = DeviceManager.AllDevices.OfType<IRoutingSinkWithSwitchingWithInputPort>();
foreach (var device in sinkDevices)
{
@@ -38,7 +38,7 @@ namespace PepperDash.Essentials.Core.Routing
{
try
{
var devices = DeviceManager.AllDevices.OfType<IRoutingSinkWithSwitching>();
var devices = DeviceManager.AllDevices.OfType<IRoutingSinkWithSwitchingWithInputPort>();
foreach (var device in devices)
{