Fix blocked accounts not being automatically removed from trending statuses (#34891)
This commit is contained in:
@@ -15,6 +15,7 @@ class SuspendAccountService < BaseService
|
||||
unmerge_from_home_timelines!
|
||||
unmerge_from_list_timelines!
|
||||
privatize_media_attachments!
|
||||
remove_from_trends!
|
||||
end
|
||||
|
||||
private
|
||||
@@ -101,6 +102,10 @@ class SuspendAccountService < BaseService
|
||||
end
|
||||
end
|
||||
|
||||
def remove_from_trends!
|
||||
StatusTrend.where(account: @account).delete_all
|
||||
end
|
||||
|
||||
def signed_activity_json
|
||||
@signed_activity_json ||= Oj.dump(serialize_payload(@account, ActivityPub::UpdateSerializer, signer: @account))
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user