1
Fork 0

Set outgoing rate for all stream types, not just local.

We were inconsistent with stream creation.
This commit is contained in:
Juliusz Chroboczek 2020-11-24 21:21:26 +01:00
parent 3167c217db
commit 2c9ee2f431
1 changed files with 1 additions and 2 deletions

View File

@ -492,8 +492,7 @@ getSelectElement('sendselect').onchange = async function(e) {
let t = getMaxVideoThroughput();
for(let id in serverConnection.up) {
let c = serverConnection.up[id];
if(c.kind === 'local')
await setMaxVideoThroughput(c, t);
await setMaxVideoThroughput(c, t);
}
}