forked from External/greenlight
Fix Invite Link Separator (#2309)
This patch fixes the separator before the invite link in the text which is sent to BigBlueButton. The `\n` characters were filtered out so that at least a space character was missing here. This fixes #2307 Co-authored-by: Ahmad Farhat <ahmad.af.farhat@gmail.com>
This commit is contained in:
parent
fa99b7678f
commit
0c8c102f4a
|
@ -87,7 +87,7 @@ module Joiner
|
|||
{
|
||||
user_is_moderator: false,
|
||||
meeting_logout_url: request.base_url + logout_room_path(@room),
|
||||
moderator_message: "#{invite_msg}\n\n#{request.base_url + room_path(@room)}",
|
||||
moderator_message: "#{invite_msg}<br> #{request.base_url + room_path(@room)}",
|
||||
host: request.host,
|
||||
recording_default_visibility: @settings.get_value("Default Recording Visibility") == "public"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue