X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/2f9291ba5764fe104264ae7e3b6a361e11212e8b..71c636e18eea392d91b6b643bd38c0f187f4ca4f:/app/helpers/open_graph_helper.rb diff --git a/app/helpers/open_graph_helper.rb b/app/helpers/open_graph_helper.rb index 11cfe5030..a91457645 100644 --- a/app/helpers/open_graph_helper.rb +++ b/app/helpers/open_graph_helper.rb @@ -10,8 +10,8 @@ module OpenGraphHelper "og:description" => t("layouts.intro_text") } - tags.map do |property, content| - tag(:meta, :property => property, :content => content) - end.join("").html_safe + safe_join(tags.map do |property, content| + tag.meta(:property => property, :content => content) + end, "\n") end end