mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
fix for incoming call stuff
This commit is contained in:
parent
68ac506a25
commit
085e198409
1 changed files with 4 additions and 2 deletions
|
|
@ -813,7 +813,9 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
||||||
{
|
{
|
||||||
trilist.SetBool(joinMap.HookState.JoinNumber, IsInCall);
|
trilist.SetBool(joinMap.HookState.JoinNumber, IsInCall);
|
||||||
|
|
||||||
trilist.SetBool(joinMap.IncomingCall.JoinNumber, args.CallItem.Direction == eCodecCallDirection.Incoming);
|
Debug.Console(1, this, "Call Direction: {0}", args.CallItem.Direction);
|
||||||
|
Debug.Console(1, this, "Call is incoming: {0}", args.CallItem.Direction == eCodecCallDirection.Incoming);
|
||||||
|
trilist.SetBool(joinMap.IncomingCall.JoinNumber, args.CallItem.Direction == eCodecCallDirection.Incoming && args.CallItem.Status != eCodecCallStatus.Disconnected);
|
||||||
|
|
||||||
if (args.CallItem.Direction == eCodecCallDirection.Incoming)
|
if (args.CallItem.Direction == eCodecCallDirection.Incoming)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue