mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 04:34:56 +00:00
fix(essentials): #965 adds condition for meeting status
This commit is contained in:
@@ -783,20 +783,14 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
|||||||
}
|
}
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
//Debug.Console(2, "************************************setting value of meetingIsBeingRecorded to: {0}", value);
|
|
||||||
if (value != _meetingIsBeingRecorded)
|
if (value != _meetingIsBeingRecorded)
|
||||||
{
|
{
|
||||||
_meetingIsBeingRecorded = value;
|
_meetingIsBeingRecorded = value;
|
||||||
//Debug.Console(2, "********************************set value of meetingIsBeingRecorded to: {0}", _meetingIsBeingRecorded);
|
|
||||||
NotifyPropertyChanged("meetingIsBeingRecorded");
|
NotifyPropertyChanged("meetingIsBeingRecorded");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public CallRecordInfo()
|
|
||||||
{
|
|
||||||
Debug.Console(2, Debug.ErrorLogLevel.Notice, "********************************************* CallRecordInfo() ******************************************");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2044,6 +2044,26 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
|||||||
|
|
||||||
OnCallStatusChange(newCall);
|
OnCallStatusChange(newCall);
|
||||||
}
|
}
|
||||||
|
else if (String.IsNullOrEmpty(Status.Call.Info.meeting_id) && !Status.NeedWaitForHost.Wait)
|
||||||
|
{
|
||||||
|
var newCall = new CodecActiveCallItem
|
||||||
|
{
|
||||||
|
Name = "",
|
||||||
|
Number = "",
|
||||||
|
Id = "",
|
||||||
|
Status = newStatus,
|
||||||
|
Type = eCodecCallType.Video,
|
||||||
|
};
|
||||||
|
|
||||||
|
if (!String.IsNullOrEmpty(_lastDialedMeetingNumber))
|
||||||
|
{
|
||||||
|
_lastDialedMeetingNumber = String.Empty;
|
||||||
|
}
|
||||||
|
|
||||||
|
ActiveCalls.Add(newCall);
|
||||||
|
|
||||||
|
OnCallStatusChange(newCall);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user