From: Anton Khorev Date: Mon, 24 Mar 2025 12:51:26 +0000 (+0300) Subject: Remove html-safe/unsafe branches from rich text linkify X-Git-Tag: live~30^2~2 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/d94a5a24b0907c610377a5a8d4abb8c877e67145?ds=inline Remove html-safe/unsafe branches from rich text linkify Rinku outputs html. It would make no sense to escape Rinku's output, the output should be safe when it's created. To make sure that it's safe, we need to escape the input. As it is currently used in osm-website, the input is already html-safe and escaping does nothing. However it's safer to escape anyway in case the future usage changes. --- diff --git a/lib/rich_text.rb b/lib/rich_text.rb index c20f973b1..d6df214d1 100644 --- a/lib/rich_text.rb +++ b/lib/rich_text.rb @@ -76,11 +76,7 @@ module RichText end def linkify(text, mode = :urls) - if text.html_safe? - Rinku.auto_link(text, mode, tag_builder.tag_options(:rel => "nofollow noopener noreferrer")).html_safe - else - Rinku.auto_link(text, mode, tag_builder.tag_options(:rel => "nofollow noopener noreferrer")) - end + Rinku.auto_link(ERB::Util.html_escape(text), mode, tag_builder.tag_options(:rel => "nofollow noopener noreferrer")).html_safe end end