forked from External/greenlight
fixes for html5 support
This commit is contained in:
@ -93,7 +93,10 @@ class BbbController < ApplicationController
|
||||
if bbb_res[:returncode] && current_user == user
|
||||
JoinMeetingJob.perform_later(user, params[:id], base_url)
|
||||
WaitingList.empty(options[:room_owner], options[:meeting_name])
|
||||
# user will be waiting for a moderator
|
||||
# the user can't join because they are on mobile and HTML5 is not enabled.
|
||||
elsif bbb_res[:messageKey] == 'unable_to_join'
|
||||
NotifyUserCantJoinJob.perform_later(user.encrypted_id, params[:id], params[:name])
|
||||
# user will be waiting for a moderator
|
||||
else
|
||||
NotifyUserWaitingJob.perform_later(user.encrypted_id, params[:id], params[:name])
|
||||
end
|
||||
|
Reference in New Issue
Block a user