mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
Adds phone call ringing status to zoom phone status enum
This commit is contained in:
parent
1676f5a956
commit
1ea80c3fab
1 changed files with 3 additions and 1 deletions
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue