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:
parent
4db8279016
commit
8da55c6e6c
1 changed files with 1 additions and 1 deletions
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue