X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/e62e879b3bb70bb93fe96d3cc669f219cd23ed8d..683722ed5c1b3224a04c23b4d175a0638964f713:/app/helpers/open_graph_helper.rb diff --git a/app/helpers/open_graph_helper.rb b/app/helpers/open_graph_helper.rb index 12c794dd0..e21a5648a 100644 --- a/app/helpers/open_graph_helper.rb +++ b/app/helpers/open_graph_helper.rb @@ -4,9 +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.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"), + "og:url" => url_for(:host => SERVER_URL), + "og:description" => t("layouts.intro_text") } tags.map do |property, content|