Skip to content
Snippets Groups Projects
Commit 606c8e76 authored by Chad Pilkey's avatar Chad Pilkey Committed by GitHub
Browse files

Merge pull request #3887 from capilkey/fix-mobile-demo

Update mobile demo to support https
parents cdf4049b b4ed3669
No related branches found
No related tags found
No related merge requests found
......@@ -99,6 +99,15 @@ You must have the BigBlueButton mobile client installed on your device for this
window.location.href="<%=joinURL%>";
</script>
<%
} else if (joinURL.startsWith("https://") {
joinURL = joinURL.replace("https", "bigbluebutton");
%>
<script language="javascript" type="text/javascript">
window.location.href="<%=joinURL%>";
</script>
<%
} else {
%>
......
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