diff options
author | Jeong Arm <kjwonmail@gmail.com> | 2022-01-19 12:08:46 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-19 04:08:46 +0100 |
commit | 2d1f082bb6bee89242ee8042dc19016179078566 (patch) | |
tree | ae6b065c955eb0673f6e6fb92e017858bb1b930d /app | |
parent | f616897841866e9cf2c9df82001278945fa4121c (diff) |
Fix NameError on ActivityPub::FetchFeaturedCollectionService (#17326)
Related: #16954
Diffstat (limited to 'app')
-rw-r--r-- | app/services/activitypub/fetch_featured_collection_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/activitypub/fetch_featured_collection_service.rb b/app/services/activitypub/fetch_featured_collection_service.rb index 9fce478c1..780741feb 100644 --- a/app/services/activitypub/fetch_featured_collection_service.rb +++ b/app/services/activitypub/fetch_featured_collection_service.rb @@ -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 |