From 8c60046ea3f46cd9597d82f66aad15684e435c79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5var=20Aamb=C3=B8=20Fosstveit?= Date: Tue, 11 Dec 2018 11:45:11 +0100 Subject: [PATCH] Don't wait for our producers --- app/lib/RoomClient.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/lib/RoomClient.js b/app/lib/RoomClient.js index b74a1ae..a902c73 100644 --- a/app/lib/RoomClient.js +++ b/app/lib/RoomClient.js @@ -1366,7 +1366,7 @@ export default class RoomClient if (this._produce) { if (this._room.canSend('audio')) - await this._setMicProducer(); + this._setMicProducer(); // Add our webcam (unless the cookie says no). if (this._room.canSend('video')) @@ -1374,7 +1374,7 @@ export default class RoomClient const devicesCookie = cookiesManager.getDevices(); if (!devicesCookie || devicesCookie.webcamEnabled) - await this.enableWebcam(); + this.enableWebcam(); } }