mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 20:54:55 +00:00
fix for unanticipated messages from Zoom
This commit is contained in:
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user