Remove html type from changeset feed entry titles

This commit is contained in:
Anton Khorev 2024-02-14 19:22:45 +03:00
parent d22e851557
commit 8e3674b1c5

View file

@ -25,7 +25,7 @@ atom_feed(:language => I18n.locale, :schema_date => 2009,
:type => "application/osmChange+xml"
if !changeset.tags.empty? && changeset.tags.key?("comment")
entry.title t("browse.changeset.feed.title_comment", :id => changeset.id, :comment => changeset.tags["comment"]), :type => "html"
entry.title t("browse.changeset.feed.title_comment", :id => changeset.id, :comment => changeset.tags["comment"])
else
entry.title t("browse.changeset.feed.title", :id => changeset.id)
end