]> git.openstreetmap.org Git - rails.git/commitdiff
Remove extra sanitize after simple_format RichText::HTML
authorAnton Khorev <tony29@yandex.ru>
Thu, 27 Mar 2025 01:29:31 +0000 (04:29 +0300)
committerAnton Khorev <tony29@yandex.ru>
Thu, 27 Mar 2025 01:29:31 +0000 (04:29 +0300)
simple_format already calls sanitize internally. We don't call sanitize again from a similar place of RichText::Text.

lib/rich_text.rb

index d9c799611a7752f24a54dd582123449d0d8d4216..3f5d9f6bad92e918f2343adf1640a7b8c3236d80 100644 (file)
@@ -88,7 +88,7 @@ module RichText
 
   class HTML < Base
     def to_html
-      linkify(sanitize(simple_format(self)))
+      linkify(simple_format(self))
     end
 
     def to_text