diff --git a/app/services/activitypub/fetch_featured_collection_service.rb b/app/services/activitypub/fetch_featured_collection_service.rb index e1fa560a8a..352e1cbf5b 100644 --- a/app/services/activitypub/fetch_featured_collection_service.rb +++ b/app/services/activitypub/fetch_featured_collection_service.rb @@ -9,6 +9,7 @@ class ActivityPub::FetchFeaturedCollectionService < BaseService @account = account @options = options @json = fetch_collection(options[:collection].presence || @account.featured_collection_url) + return if @json.blank? process_items(collection_items(@json)) end