diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 4493cd92bdb..7cf3271f3a7 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -111,7 +111,9 @@ module ApplicationHelper result << tag(:meta, name: 'twitter:card', content: "summary") - [:image, :url, :title, :description, 'image:width', 'image:height'].each do |property| + # I removed image related opengraph tags from here for now due to + # https://meta.discourse.org/t/x/22744/18 + [:url, :title, :description].each do |property| if opts[property].present? escape = (property != :image) result << tag(:meta, {property: "og:#{property}", content: opts[property]}, nil, escape) << "\n"