mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 20:17:03 +00:00
Merge remote-tracking branch 'origin/feature/ecs-407' into feature/cisco-spark-2
This commit is contained in:
commit
0ee35dfbd9
16 changed files with 427 additions and 73 deletions
|
|
@ -91,8 +91,9 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
|||
public override void EndAllCalls()
|
||||
{
|
||||
Debug.Console(1, this, "EndAllCalls");
|
||||
foreach (var call in ActiveCalls)
|
||||
for(int i = ActiveCalls.Count - 1; i >= 0; i--)
|
||||
{
|
||||
var call = ActiveCalls[i];
|
||||
ActiveCalls.Remove(call);
|
||||
SetNewCallStatusAndFireCallStatusChange(eCodecCallStatus.Disconnected, call);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue