diff --git a/modules/RTC/RTCUtils.js b/modules/RTC/RTCUtils.js index 34a3a44b6..e6c6672ef 100644 --- a/modules/RTC/RTCUtils.js +++ b/modules/RTC/RTCUtils.js @@ -145,6 +145,12 @@ function getConstraints(um, options) { } ] }; + } else if (RTCBrowserType.isFirefox()) { + constraints.video = { + mozMediaSource: "window", + mediaSource: "window" + }; + } else { logger.error( "'screen' WebRTC media source is supported only in Chrome" +