]> git.openstreetmap.org Git - rails.git/commitdiff
Use PNG logo for og:image
authorTom Hughes <tom@compton.nu>
Tue, 27 Oct 2015 11:49:06 +0000 (11:49 +0000)
committerTom Hughes <tom@compton.nu>
Tue, 27 Oct 2015 12:01:44 +0000 (12:01 +0000)
app/assets/images/osm_logo_256.png [new file with mode: 0644]
app/assets/images/osm_logo_512.png [new file with mode: 0644]
app/helpers/open_graph_helper.rb

diff --git a/app/assets/images/osm_logo_256.png b/app/assets/images/osm_logo_256.png
new file mode 100644 (file)
index 0000000..5388bc5
Binary files /dev/null and b/app/assets/images/osm_logo_256.png differ
diff --git a/app/assets/images/osm_logo_512.png b/app/assets/images/osm_logo_512.png
new file mode 100644 (file)
index 0000000..c54f416
Binary files /dev/null and b/app/assets/images/osm_logo_512.png differ
index 12c794dd08d6ddcb929a0bb73452e07e302f2297..61c3dc44bc77bf38c7f541f3320245cf6402dca9 100644 (file)
@@ -4,9 +4,8 @@ module OpenGraphHelper
       "og:site_name" => t("layouts.project_name.title"),
       "og:title" => [t("layouts.project_name.title"), title].compact.join(" | "),
       "og:type" => "website",
       "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.svg", :host => SERVER_URL),
-      "og:image:width" => "200",
-      "og:image:height" => "200"
+      "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")
     }
 
     tags.map do |property, content|
     }
 
     tags.map do |property, content|