mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 20:47:04 +00:00
fix for unanticipated messages from Zoom
This commit is contained in:
parent
085e198409
commit
59881d6b3b
1 changed files with 12 additions and 0 deletions
|
|
@ -1605,6 +1605,12 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
||||||
public override void AcceptCall(CodecActiveCallItem call)
|
public override void AcceptCall(CodecActiveCallItem call)
|
||||||
{
|
{
|
||||||
SendText(string.Format("zCommand Call Accept callerJID: {0}", call.Id));
|
SendText(string.Format("zCommand Call Accept callerJID: {0}", call.Id));
|
||||||
|
|
||||||
|
call.Status = eCodecCallStatus.Connected;
|
||||||
|
|
||||||
|
OnCallStatusChange(call);
|
||||||
|
|
||||||
|
UpdateCallStatus();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void RejectCall()
|
public void RejectCall()
|
||||||
|
|
@ -1619,6 +1625,12 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
||||||
public override void RejectCall(CodecActiveCallItem call)
|
public override void RejectCall(CodecActiveCallItem call)
|
||||||
{
|
{
|
||||||
SendText(string.Format("zCommand Call Reject callerJID: {0}", call.Id));
|
SendText(string.Format("zCommand Call Reject callerJID: {0}", call.Id));
|
||||||
|
|
||||||
|
call.Status = eCodecCallStatus.Disconnected;
|
||||||
|
|
||||||
|
OnCallStatusChange(call);
|
||||||
|
|
||||||
|
UpdateCallStatus();
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void Dial(Meeting meeting)
|
public override void Dial(Meeting meeting)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue