Skip to content
Snippets Groups Projects
Unverified Commit ee8d4dd0 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix moderator account leak in status edit history (#17746)

parent 75e33fd0
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,8 @@ class Admin::StatusBatchAction
end
def handle_mark_as_sensitive!
representative_account = Account.representative
# Can't use a transaction here because UpdateStatusService queues
# Sidekiq jobs
statuses.includes(:media_attachments, :preview_cards).find_each do |status|
......@@ -76,7 +78,7 @@ class Admin::StatusBatchAction
authorize(status, :update?)
if target_account.local?
UpdateStatusService.new.call(status, current_account.id, sensitive: true)
UpdateStatusService.new.call(status, representative_account.id, sensitive: true)
else
status.update(sensitive: true)
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment