mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 13:04:37 +00:00
57b503d4ef
Fix #7518
15 lines
418 B
Ruby
15 lines
418 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ActivityPub::Activity::Remove < ActivityPub::Activity
|
|
def perform
|
|
return unless @json['target'].present? && value_or_id(@json['target']) == @account.featured_collection_url
|
|
|
|
status = status_from_uri(object_uri)
|
|
|
|
return unless !status.nil? && status.account_id == @account.id
|
|
|
|
pin = StatusPin.find_by(account: @account, status: status)
|
|
pin&.destroy!
|
|
end
|
|
end
|