From: ThibG Date: Tue, 30 Oct 2018 14:02:24 +0000 (+0100) Subject: Fix Pleroma mentions being fetched as preview cards (#9158) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=a03d5066265c9555ea2e42cf4bb06edc7439e50c;p=mastodon.git Fix Pleroma mentions being fetched as preview cards (#9158) --- diff --git a/app/services/fetch_link_card_service.rb b/app/services/fetch_link_card_service.rb index 462e5ee13..3e77579bb 100644 --- a/app/services/fetch_link_card_service.rb +++ b/app/services/fetch_link_card_service.rb @@ -17,8 +17,7 @@ class FetchLinkCardService < BaseService return if @url.nil? || @status.preview_cards.any? - @mentions = status.mentions - @url = @url.to_s + @url = @url.to_s RedisLock.acquire(lock_options) do |lock| if lock.acquired? @@ -84,9 +83,8 @@ class FetchLinkCardService < BaseService end def mention_link?(a) - return false if @mentions.nil? - @mentions.any? do |mention| - a['href'] == TagManager.instance.url_for(mention.target) + @status.mentions.any? do |mention| + a['href'] == TagManager.instance.url_for(mention.account) end end