Skip to content
Snippets Groups Projects
Unverified Commit 0c8c102f authored by Lars Kiesow's avatar Lars Kiesow Committed by GitHub
Browse files

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: default avatarAhmad Farhat <ahmad.af.farhat@gmail.com>
parent fa99b767
No related branches found
No related tags found
No related merge requests found
......@@ -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"
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment