mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
Limits max video participant list size to 50
This commit is contained in:
parent
f4fb9cd173
commit
c58a1874ca
1 changed files with 1 additions and 1 deletions
|
|
@ -503,7 +503,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
|||
|
||||
private string UpdateParticipantsXSig(List<Participant> currentParticipants)
|
||||
{
|
||||
const int maxParticipants = 255;
|
||||
const int maxParticipants = 50;
|
||||
const int maxDigitals = 5;
|
||||
const int maxStrings = 1;
|
||||
const int offset = maxDigitals + maxStrings;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue