Browse Source

Fix ArgumentError when processing pinned posts from Friendica (#18260)

Follow-up to #18254
closed-social-glitch-2
Claire 2 years ago
committed by GitHub
parent
commit
0597e5db68
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/services/activitypub/fetch_featured_collection_service.rb

+ 1
- 1
app/services/activitypub/fetch_featured_collection_service.rb View File

@ -32,7 +32,7 @@ class ActivityPub::FetchFeaturedCollectionService < BaseService
return collection_or_uri if collection_or_uri.is_a?(Hash)
return if invalid_origin?(collection_or_uri)
fetch_resource_without_id_validation(collection_or_uri, nil, true, local_follower)
fetch_resource_without_id_validation(collection_or_uri, local_follower, true)
end
def process_items(items)

Loading…
Cancel
Save