Update to add populate call Id and Name properties to allow proper removal of inactive calls

This commit is contained in:
Neil Dorin
2021-07-28 15:27:47 -06:00
parent eec86fde48
commit e7bbfbd40a

View File

@@ -1589,7 +1589,12 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
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);