Browse Source

Fix NameError on ActivityPub::FetchFeaturedCollectionService (#17326)

Related: #16954
closed-social-glitch-2
Jeong Arm 2 years ago
committed by GitHub
parent
commit
2d1f082bb6
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

@ -48,6 +48,6 @@ class ActivityPub::FetchFeaturedCollectionService < BaseService
end
def local_follower
@local_follower ||= account.followers.local.without_suspended.first
@local_follower ||= @account.followers.local.without_suspended.first
end
end

Loading…
Cancel
Save