]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/open_graph_helper.rb
Use image_url instead of image_path with the host option
[rails.git] / app / helpers / open_graph_helper.rb
index 61c3dc44bc77bf38c7f541f3320245cf6402dca9..ac1a572196499f043f224c5a3b39873b72b0381e 100644 (file)
@@ -4,8 +4,10 @@ module OpenGraphHelper
       "og:site_name" => t("layouts.project_name.title"),
       "og:title" => [t("layouts.project_name.title"), title].compact.join(" | "),
       "og:type" => "website",
-      "og:image" => image_path("osm_logo_256.png", :host => SERVER_URL, :protocol => "http"),
-      "og:image:secure_url" => image_path("osm_logo_256.png", :host => SERVER_URL, :protocol => "https")
+      "og:image" => image_url("osm_logo_256.png", :protocol => "http"),
+      "og:image:secure_url" => image_url("osm_logo_256.png", :protocol => "https"),
+      "og:url" => url_for(:host => SERVER_URL),
+      "og:description" => t("layouts.intro_text")
     }
 
     tags.map do |property, content|