Compare commits

...

1 Commits

Author SHA1 Message Date
Claire
0cd56041f6 Fix collections not being refreshed on re-discovery 2026-05-07 14:30:05 +02:00

View File

@@ -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