diff --git a/app/services/activitypub/fetch_remote_featured_collection_service.rb b/app/services/activitypub/fetch_remote_featured_collection_service.rb index 968dc6811ec..8786c9793c2 100644 --- a/app/services/activitypub/fetch_remote_featured_collection_service.rb +++ b/app/services/activitypub/fetch_remote_featured_collection_service.rb @@ -18,9 +18,6 @@ class ActivityPub::FetchRemoteFeaturedCollectionService < BaseService account = Account.find_by(uri: json['attributedTo']) return unless account - existing_collection = account.collections.find_by(uri:) - return existing_collection if existing_collection.present? - ActivityPub::ProcessFeaturedCollectionService.new.call(account, json, request_id:) end end