]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/open_graph_helper.rb
Update rubocop todo and fix new warnings
[rails.git] / app / helpers / open_graph_helper.rb
index 11cfe50306ee4d1e4fe1b08ea647735e6b565379..a91457645416f49c3ef01a4e50d63d239804d36b 100644 (file)
@@ -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