jitsi / js-utils

Utilities for Jitsi JS projects
Apache License 2.0
33 stars 60 forks source link

feat(BrowserDetection): do not use window.chrome to identify Chromium… #21

Closed jdapena closed 4 years ago

jdapena commented 4 years ago

…-like browsers (#20)

webOS (and maybe other web runtimes) may be based on Chromium, but that does not imply it exposes window.chrome API. So checking window.chrome is currently breaking Jitsi on them.

This PR just removes the window.chrome check.

saghul commented 4 years ago

Thanks José!