From 68dbe959bb9ac06598d76d0c9352e71bec97259c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Sat, 9 Oct 2021 08:57:46 +0200 Subject: [PATCH] Add a logline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- src/webrtc/call.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/webrtc/call.ts b/src/webrtc/call.ts index bc3e4ff28..7afa8f08a 100644 --- a/src/webrtc/call.ts +++ b/src/webrtc/call.ts @@ -768,6 +768,7 @@ export class MatrixCall extends EventEmitter { } catch (e) { if (answerWithVideo) { // Try to answer without video + logger.warn("Failed to getUserMedia(), trying to getUserMedia() without video"); this.setState(prevState); this.waitForLocalAVStream = false; await this.answer(answerWithAudio, false);