Browse Source

Fix report processing notice not mentioning the report number when performing a custom action (#27442)

lets-bump-hometown-to-mastodon-4.2
Claire 3 years ago
parent
commit
700ae1f918
  1. 2
      app/controllers/admin/account_actions_controller.rb

2
app/controllers/admin/account_actions_controller.rb

@ -21,7 +21,7 @@ module Admin
account_action.save!
if account_action.with_report?
redirect_to admin_reports_path, notice: I18n.t('admin.reports.processed_msg', id: params[:report_id])
redirect_to admin_reports_path, notice: I18n.t('admin.reports.processed_msg', id: resource_params[:report_id])
else
redirect_to admin_account_path(@account.id)
end

Loading…
Cancel
Save