Brings in another small zoom update from @jkdevito

This commit is contained in:
Neil Dorin
2021-07-28 15:33:04 -06:00
parent e7bbfbd40a
commit 66ff6b2e07

View File

@@ -1650,7 +1650,8 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
//clear participants list after call cleanup
if (ActiveCalls.Count == 0)
{
Participants.CurrentParticipants = new List<Participant>();
var emptyList = new List<Participant>();
Participants.CurrentParticipants = emptyList;
}
}