Adds phone call ringing status to zoom phone status enum

This commit is contained in:
Alex Johnson
2020-10-12 12:58:22 -04:00
parent 1676f5a956
commit 1ea80c3fab

View File

@@ -756,7 +756,8 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
_status = value; _status = value;
OffHook = _status == ePhoneCallStatus.PhoneCallStatus_Accepted || OffHook = _status == ePhoneCallStatus.PhoneCallStatus_Accepted ||
_status == ePhoneCallStatus.PhoneCallStatus_InCall || _status == ePhoneCallStatus.PhoneCallStatus_InCall ||
_status == ePhoneCallStatus.PhoneCallStatus_Init; _status == ePhoneCallStatus.PhoneCallStatus_Init ||
_status == ePhoneCallStatus.PhoneCallStatus_Ringing;
} }
} }
@@ -775,6 +776,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
public enum ePhoneCallStatus public enum ePhoneCallStatus
{ {
PhoneCallStatus_Ringing,
PhoneCallStatus_Terminated, PhoneCallStatus_Terminated,
PhoneCallStatus_Accepted, PhoneCallStatus_Accepted,
PhoneCallStatus_InCall, PhoneCallStatus_InCall,