forked from fedi/mastodon
Fix Pleroma mentions being fetched as preview cards (#9158)
This commit is contained in:
parent
c1eec9869e
commit
a03d506626
|
@ -17,8 +17,7 @@ class FetchLinkCardService < BaseService
|
||||||
|
|
||||||
return if @url.nil? || @status.preview_cards.any?
|
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|
|
RedisLock.acquire(lock_options) do |lock|
|
||||||
if lock.acquired?
|
if lock.acquired?
|
||||||
|
@ -84,9 +83,8 @@ class FetchLinkCardService < BaseService
|
||||||
end
|
end
|
||||||
|
|
||||||
def mention_link?(a)
|
def mention_link?(a)
|
||||||
return false if @mentions.nil?
|
@status.mentions.any? do |mention|
|
||||||
@mentions.any? do |mention|
|
a['href'] == TagManager.instance.url_for(mention.account)
|
||||||
a['href'] == TagManager.instance.url_for(mention.target)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue