From 20afebf339d90a3b60e0970a8f5ccf108b408b85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Tue, 23 Feb 2021 12:23:49 +0100 Subject: [PATCH] Set video to true MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- src/webrtc/call.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/webrtc/call.ts b/src/webrtc/call.ts index 4edf71575..91240b7f1 100644 --- a/src/webrtc/call.ts +++ b/src/webrtc/call.ts @@ -1754,11 +1754,7 @@ async function getUserMediaContraints( logger.debug("Electron desktopCapturer is not available..."); return { audio: false, - video: { - mandatory: { - chromeMediaSource: "desktop", - }, - }, + video: true, }; } }