https://github.com/apache/openmeetings/blob/master/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-video-util.js#L273

        function _sharingSupported() {
                const b = kurentoUtils.WebRtcPeer.browser;
                return (b.name === 'Edge' && b.major > 16)
                        || (b.name === 'Firefox')
                        || (b.name === 'Opera')
                        || (b.name === 'Yandex')
                        || _isChrome(b)
                        || _isEdgeChromium(b)
                        || (b.name === 'Mozilla' && b.major > 4);
}

If the name is 'Firefox' it appears that it will work.



On Sun, 2020-09-27 at 08:28 +0300, Ali Alhaidary wrote:
> is FireFox ESR v 52.9.0 (32-bit) filtered as well?
> 
> 
> On 9/23/20 11:14 AM, Maxim Solodovnik wrote:
> > FTR https://issues.apache.org/jira/browse/OPENMEETINGS-2450
> > 
> > On Sun, 20 Sep 2020 at 17:07, dww <dwort...@mykolab.com> wrote:
> > > On Sun, 2020-09-20 at 10:41 +0700, Maxim Solodovnik wrote:
> > > > > On my laptop with PureOS ( a Debian derivative) with
> > > > > PureBrowser (
> > > > > derivative of Firefox) when I select the share screen action
> > > > > I get
> > > > > a message that the browser does not support screen sharing.
> > > > > On my other laptop with Win10 and Firefox, screen sharing
> > > > > works. I
> > > > > would thing PureBrowser should work. Is there a configuration
> > > > > option that I could allow screen sharing on PureBrowser or is
> > > > > that
> > > > > hard coded or is the configuration on the browser?
> > > > Browsers are being manually filtered to determine if screen-
> > > > sharing
> > > > is supported
> > > > (please check here
> > > > https://github.com/apache/openmeetings/blob/master/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-video-util.js#L273)
> > > > 
> > > > In case your PureBrowser doesn't report it's name as 'Firefox'
> > > > it
> > > > will
> > > > be filtered
> > > > 
> > > > To fix it please do the following:
> > > > 1) Enter any room using PureBrowser
> > > > 2) Open developer console (usually available after F12 is
> > > > pressed)
> > > > 3) open Console tab
> > > > 4) type: `kurentoUtils.WebRtcPeer.browser`
> > > > 5) share result with me
> > > Object { name: "Mozilla", version: "5.0", major: "5" }
> > > 
> > > 

Reply via email to