From: Eugen Date: Thu, 1 Dec 2016 00:56:43 +0000 (+0100) Subject: Fix opengraph preview image X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=bdf7d8f8fd09dfa3a9182c575a3101c73ecc543f;p=mastodon.git Fix opengraph preview image --- 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 }