Skip to content
Snippets Groups Projects
Unverified Commit bd7122a7 authored by Dixon Fred's avatar Dixon Fred Committed by GitHub
Browse files

Merge pull request #11868 from mariogasparoni/fix-11865

fix: User can't join using microsoft edge
parents 6a339875 94111107
No related branches found
No related tags found
No related merge requests found
......@@ -135,7 +135,11 @@ class App extends Component {
const body = document.getElementsByTagName('body')[0];
body.classList.add(`browser-${browserName.toLowerCase()}`);
if (browserName) {
body.classList.add(`browser-${browserName.split(' ').pop()
.toLowerCase()}`);
}
body.classList.add(`os-${osName.split(' ').shift().toLowerCase()}`);
if (!validIOSVersion()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment