mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-14 12:15:01 +00:00
Update to add populate call Id and Name properties to allow proper removal of inactive calls
This commit is contained in:
@@ -1589,7 +1589,12 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
var newCall = new CodecActiveCallItem { Status = newStatus };
|
var newCall = new CodecActiveCallItem
|
||||||
|
{
|
||||||
|
Name = Status.Call.Info.meeting_list_item.meetingName,
|
||||||
|
Id = Status.Call.Info.meeting_id,
|
||||||
|
Status = newStatus
|
||||||
|
};
|
||||||
|
|
||||||
ActiveCalls.Add(newCall);
|
ActiveCalls.Add(newCall);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user