mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
Worked on VC directory and favorites. Fixed various bugs.
This commit is contained in:
parent
2def648596
commit
fb0a91b454
16 changed files with 1895 additions and 1674 deletions
|
|
@ -109,11 +109,11 @@ namespace PepperDash.Essentials.Devices.Common
|
|||
.MockVC(key, name, props);
|
||||
}
|
||||
|
||||
else if (typeName == "ciscocodec")
|
||||
else if (typeName.StartsWith("ciscospark"))
|
||||
{
|
||||
var comm = CommFactory.CreateCommForDevice(dc);
|
||||
var props = JsonConvert.DeserializeObject<Codec.CiscoCodecPropertiesConfig>(properties.ToString());
|
||||
return new PepperDash.Essentials.Devices.Common.VideoCodec.Cisco.CiscoCodec(key, name, comm, props);
|
||||
var props = JsonConvert.DeserializeObject<Codec.CiscoSparkCodecPropertiesConfig>(properties.ToString());
|
||||
return new PepperDash.Essentials.Devices.Common.VideoCodec.Cisco.CiscoSparkCodec(key, name, comm, props);
|
||||
}
|
||||
|
||||
else if (groupName == "settopbox") //(typeName == "irstbbase")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue