about summary refs log tree commit diff
path: root/app/views
diff options
context:
space:
mode:
authorEugen <eugen@zeonfederated.com>2016-12-01 01:56:43 +0100
committerGitHub <noreply@github.com>2016-12-01 01:56:43 +0100
commitbdf7d8f8fd09dfa3a9182c575a3101c73ecc543f (patch)
tree2cff72b6c49be46b7aa7bb7749a8240aeebc1e30 /app/views
parent96a2a6523bb668658b5278221152f415e34ed3fa (diff)
Fix opengraph preview image
Diffstat (limited to 'app/views')
-rw-r--r--app/views/stream_entries/show.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/stream_entries/show.html.haml b/app/views/stream_entries/show.html.haml
index e628dd99d..a0e248873 100644
--- a/app/views/stream_entries/show.html.haml
+++ b/app/views/stream_entries/show.html.haml
@@ -7,7 +7,7 @@
   %meta{ name: 'og:title', content: "#{@account.username} on #{Rails.configuration.x.local_domain}" }/
   %meta{ name: 'og:article:author', content: @account.username }/
   %meta{ name: 'og:description', content: @stream_entry.activity.content }/
-  %meta{ name: '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(:preview)) : full_asset_url(@account.avatar.url(:large)) }/
+  %meta{ name: '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(:large)) }/
 
 .activity-stream.activity-stream-headless
   = render partial: @type, locals: { @type.to_sym => @stream_entry.activity, include_threads: true }