about summary refs log tree commit diff
path: root/app/views/stream_entries
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-12-09 12:08:39 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-12-09 12:08:39 +0100
commit6c60757e99085d273cdf95d13d2b9990e4edef87 (patch)
tree5ac42b94bba4b3a29eee5bfb4e1952c354932cd3 /app/views/stream_entries
parentc8e0ceed564263884b08f9a899f1f06c8a0c9a7f (diff)
Improve images in opengraph meta tags
Diffstat (limited to 'app/views/stream_entries')
-rw-r--r--app/views/stream_entries/show.html.haml9
1 files changed, 7 insertions, 2 deletions
diff --git a/app/views/stream_entries/show.html.haml b/app/views/stream_entries/show.html.haml
index a7f5653e6..43935da60 100644
--- a/app/views/stream_entries/show.html.haml
+++ b/app/views/stream_entries/show.html.haml
@@ -5,9 +5,14 @@
   %meta{ property: 'og:site_name', content: 'Mastodon' }/
   %meta{ property: 'og:type', content: 'article' }/
   %meta{ property: 'og:title', content: "#{@account.username} on #{Rails.configuration.x.local_domain}" }/
-  %meta{ property: 'og:article:author', content: @account.username }/
   %meta{ property: 'og:description', content: @stream_entry.activity.content }/
-  %meta{ property: 'og:image', content: @stream_entry.activity.is_a?(Status) && @stream_entry.activity.media_attachments.size > 0 ? full_asset_url(@stream_entry.activity.media_attachments.first.file.url( :small)) : full_asset_url(@account.avatar.url(:original)) }/
+
+  - if @stream_entry.activity.is_a?(Status) && @stream_entry.activity.media_attachments.size > 0
+    %meta{ property: 'og:image', content: full_asset_url(@stream_entry.activity.media_attachments.first.file.url(:small)) }/
+  - else
+    %meta{ property: 'og:image', content: full_asset_url(@account.avatar.url(:original)) }/
+    %meta{ property: 'og:image:width', content: '120' }/
+    %meta{ property: 'og:image:height', content: '120' }/
 
 .activity-stream.activity-stream-headless
   = render partial: @type, locals: { @type.to_sym => @stream_entry.activity, include_threads: true }