From dcf199c0aad09765dfa761e4c9ee6db7d01ac252 Mon Sep 17 00:00:00 2001 From: Joshua Arts Date: Tue, 3 Jul 2018 13:11:39 -0400 Subject: [PATCH] fix chat join message --- app/controllers/application_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 0f07f83b..d7f31433 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -56,7 +56,7 @@ class ApplicationController < ActionController::Base user_is_moderator: false, meeting_logout_url: request.base_url + logout_room_path(@room), meeting_recorded: true, - moderator_message: "#{invite_msg}\n\n #{request.base_url + relative_root + room_path(@room)}", + moderator_message: "#{invite_msg}\n\n #{request.base_url + room_path(@room)}", } end end