Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/helpers/messages_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def message_presentation(message)
# Only apply auto_link if the message doesn't have markdown
# (markdown filter already processes links and sanitizes HTML)
if has_markdown
filtered_content.html_safe
filtered_content.to_s.html_safe
else
auto_link h(filtered_content), html: { target: "_blank" }
end
Expand Down
Loading