1
Fork 0

Remove async from ServerConnection.gotRenegotiate

This commit is contained in:
Alexandre Iooss 2021-04-24 14:53:24 +02:00 committed by Juliusz Chroboczek
parent 4db8279016
commit 8da55c6e6c
1 changed files with 1 additions and 1 deletions

View File

@ -729,7 +729,7 @@ ServerConnection.prototype.gotAnswer = async function(id, sdp) {
* @param {string} id
* @function
*/
ServerConnection.prototype.gotRenegotiate = async function(id) {
ServerConnection.prototype.gotRenegotiate = function(id) {
let c = this.up[id];
if(!c)
throw new Error('unknown up stream');