mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 04:34:56 +00:00
Adds phone call ringing status to zoom phone status enum
This commit is contained in:
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user