Browse Source

Do not error out when performing admin actions on no statuses (#10094)

Same as #8220 but for reports
pull/4/head
ThibG 5 years ago
committed by Eugen Rochko
parent
commit
738c034213
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      app/controllers/admin/reported_statuses_controller.rb

+ 4
- 0
app/controllers/admin/reported_statuses_controller.rb View File

@ -10,6 +10,10 @@ module Admin
@form = Form::StatusBatch.new(form_status_batch_params.merge(current_account: current_account, action: action_from_button))
flash[:alert] = I18n.t('admin.statuses.failed_to_execute') unless @form.save
redirect_to admin_report_path(@report)
rescue ActionController::ParameterMissing
flash[:alert] = I18n.t('admin.statuses.no_status_selected')
redirect_to admin_report_path(@report)
end

Loading…
Cancel
Save