Rebuit Changes from dead ecs-541 branch

This commit is contained in:
Neil Dorin
2017-10-22 10:05:26 -06:00
parent 4685850eff
commit 2e98e8d146
11 changed files with 60 additions and 30 deletions

View File

@@ -130,6 +130,14 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco
}
}
protected override Func<bool> SharingContentIsOnFeedbackFunc
{
get
{
return () => CodecStatus.Status.Conference.Presentation.Mode.BoolValue;
}
}
protected override Func<bool> MuteFeedbackFunc
{
get

View File

@@ -319,7 +319,8 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec
contact.Name = c.Name.Value;
contact.ContactId = c.ContactId.Value;
contact.Title = c.Title.Value;
if (c.Title != null)
contact.Title = c.Title.Value;
if(c.FolderId != null)
{

View File

@@ -366,8 +366,8 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco
{
set
{
// If the incoming value is "Active" it sets the BoolValue true, otherwise sets it false
BoolValue = value == "On";
// If the incoming value is "Sending" it sets the BoolValue true, otherwise sets it false
BoolValue = value == "Sending";
OnValueChanged();
}
}