diff --git a/PepperDashEssentials/AppServer/RoomBridges/CotijaDdvc01RoomBridge.cs b/PepperDashEssentials/AppServer/RoomBridges/CotijaDdvc01RoomBridge.cs index 1804fcfa..4b3f30bd 100644 --- a/PepperDashEssentials/AppServer/RoomBridges/CotijaDdvc01RoomBridge.cs +++ b/PepperDashEssentials/AppServer/RoomBridges/CotijaDdvc01RoomBridge.cs @@ -510,6 +510,20 @@ namespace PepperDash.Essentials.Room.Cotija co.SourceLists = new Dictionary>(); var newSl = new Dictionary(); + // add "none" source if VTC present + + if (!string.IsNullOrEmpty(rmProps.VideoCodecKey)) + { + var codecOsd = new SourceListItem() + { + Name = "None", + IncludeInSourceList = true, + Order = 1, + Type = eSourceListItemType.Route, + SourceKey = "" + }; + newSl.Add("sourceNone", codecOsd); + } // add sources... for (uint i = 0; i<= 19; i++) { @@ -525,7 +539,7 @@ namespace PepperDash.Essentials.Room.Cotija var newSLI = new SourceListItem{ Icon = icon, Name = name, - Order = (int)i + 1, + Order = (int)i + 10, SourceKey = key, Type = eSourceListItemType.Route, DisableCodecSharing = disableShare,