Skip to content
Snippets Groups Projects
Unverified Commit efc2e3ab authored by Joshua Arts's avatar Joshua Arts Committed by GitHub
Browse files

Merge pull request #242 from bigbluebutton/escape-uid-url

Escape room uid when generating invite path.
parents 0d1df083 f8af2fc3
No related branches found
No related tags found
No related merge requests found
......@@ -39,9 +39,9 @@ class Room < ApplicationRecord
bbb.is_meeting_running?(bbb_id)
end
# Determines the invite URL for the room.
# Determines the invite path for the room.
def invite_path
"#{Rails.configuration.relative_url_root}/#{uid}"
"#{Rails.configuration.relative_url_root}/#{CGI.escape(uid)}"
end
# Creates a meeting on the BigBlueButton server.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment