1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-10 02:35:58 +01:00

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

View file

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