]> git.openstreetmap.org Git - rails.git/commitdiff
Don't add site name to og:title when page title is provided
authorAnton Khorev <tony29@yandex.ru>
Fri, 7 Jun 2024 08:33:00 +0000 (11:33 +0300)
committerAnton Khorev <tony29@yandex.ru>
Fri, 7 Jun 2024 08:33:00 +0000 (11:33 +0300)
app/helpers/open_graph_helper.rb

index 0ce4d626707a49c5d6737cc8f578d8b8d52cbf5b..aebb5d85678b05a581ea25936fafc8977eb78ca6 100644 (file)
@@ -2,7 +2,7 @@ module OpenGraphHelper
   def opengraph_tags(title = nil, og_image = nil)
     tags = {
       "og:site_name" => t("layouts.project_name.title"),
-      "og:title" => [title, t("layouts.project_name.title")].compact.join(" | "),
+      "og:title" => title || t("layouts.project_name.title"),
       "og:type" => "website",
       "og:image" => og_image ? URI.join(root_url, og_image) : image_url("osm_logo_256.png"),
       "og:url" => url_for(:only_path => false),