X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/0814b4096c443e2ab3c09baa058aa81a00d205d1..2a44ff581f4c547a3637ea52567a3398b1d8bfe0:/app/helpers/open_graph_helper.rb diff --git a/app/helpers/open_graph_helper.rb b/app/helpers/open_graph_helper.rb index ab7e230cb..11cfe5030 100644 --- a/app/helpers/open_graph_helper.rb +++ b/app/helpers/open_graph_helper.rb @@ -2,7 +2,7 @@ module OpenGraphHelper def opengraph_tags(title = nil) tags = { "og:site_name" => t("layouts.project_name.title"), - "og:title" => [t("layouts.project_name.title"), title].compact.join(" | "), + "og:title" => [title, t("layouts.project_name.title")].compact.join(" | "), "og:type" => "website", "og:image" => image_url("osm_logo_256.png", :protocol => "http"), "og:image:secure_url" => image_url("osm_logo_256.png", :protocol => "https"),