From e6f316f24799ad9634087bcd7c24e8f40d51ca7a Mon Sep 17 00:00:00 2001 From: Chad Pilkey <capilkey@gmail.com> Date: Tue, 2 May 2017 16:27:37 -0400 Subject: [PATCH] Fix a missing bracket in mobile demo --- bbb-api-demo/src/main/webapp/mobile.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bbb-api-demo/src/main/webapp/mobile.jsp b/bbb-api-demo/src/main/webapp/mobile.jsp index f5a35fe601..adf9478efd 100755 --- a/bbb-api-demo/src/main/webapp/mobile.jsp +++ b/bbb-api-demo/src/main/webapp/mobile.jsp @@ -100,7 +100,7 @@ You must have the BigBlueButton mobile client installed on your device for this </script> <% - } else if (joinURL.startsWith("https://") { + } else if (joinURL.startsWith("https://")) { joinURL = joinURL.replace("https", "bigbluebutton"); %> -- GitLab