mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 20:47:04 +00:00
Rebuit Changes from dead ecs-541 branch
This commit is contained in:
parent
4685850eff
commit
2e98e8d146
11 changed files with 60 additions and 30 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue