Fix NameError on ActivityPub::FetchFeaturedCollectionService (#17326)

Related: #16954
這個提交存在於:
Jeong Arm 2022-01-19 12:08:46 +09:00 提交者 GitHub
父節點 f616897841
當前提交 2d1f082bb6
資料庫中找不到此簽署所對應的金鑰
GPG 金鑰 ID: 4AEE18F83AFDEB23

檢視檔案

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