From 1655014478618fcd309a28c7f04f97902db4272d Mon Sep 17 00:00:00 2001 From: Fred Dixon Date: Wed, 16 May 2018 11:59:22 -0400 Subject: [PATCH] Update bbb_api.rb Update GreenLight for new way to launch HTML5 client --- app/lib/bbb_api.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/lib/bbb_api.rb b/app/lib/bbb_api.rb index fccf0216..a02ecc31 100644 --- a/app/lib/bbb_api.rb +++ b/app/lib/bbb_api.rb @@ -148,8 +148,7 @@ module BbbApi # Generate the join URL. if use_html5 - clientURL = bbb_endpoint.gsub('bigbluebutton/', 'html5client/join') - join_url = bbb.join_meeting_url(meeting_id, full_name, password, {clientURL: clientURL}) + join_url = bbb.join_meeting_url(meeting_id, full_name, password, {joinViaHtml5:true}) else join_url = bbb.join_meeting_url(meeting_id, full_name, password) end