From 8e3674b1c54e111676f12540fad30c8e19e092ed Mon Sep 17 00:00:00 2001 From: Anton Khorev Date: Wed, 14 Feb 2024 19:22:45 +0300 Subject: [PATCH] Remove html type from changeset feed entry titles --- app/views/changesets/index.atom.builder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/changesets/index.atom.builder b/app/views/changesets/index.atom.builder index a1af72b91..b37fee367 100644 --- a/app/views/changesets/index.atom.builder +++ b/app/views/changesets/index.atom.builder @@ -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 -- 2.39.5