about summary refs log tree commit diff
path: root/app/controllers/admin/statuses_controller.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2018-08-16 20:02:52 +0200
committerEugen Rochko <eugen@zeonfederated.com>2018-08-16 20:02:52 +0200
commitc98681c358c1f32f044992d2fe97f2e7843c83d1 (patch)
tree32c1fb42f2f1cd87f64bf3efca9af0b9e243ca13 /app/controllers/admin/statuses_controller.rb
parentd78474264da0bd51e021c5f04311515e10ac828e (diff)
Do not error out when performing admin actions on no statuses (#8220)
Fixes the other issue with #8168
Diffstat (limited to 'app/controllers/admin/statuses_controller.rb')
-rw-r--r--app/controllers/admin/statuses_controller.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/controllers/admin/statuses_controller.rb b/app/controllers/admin/statuses_controller.rb
index 382bfc4a2..a69f12084 100644
--- a/app/controllers/admin/statuses_controller.rb
+++ b/app/controllers/admin/statuses_controller.rb
@@ -29,6 +29,10 @@ module Admin
       flash[:alert] = I18n.t('admin.statuses.failed_to_execute') unless @form.save
 
       redirect_to admin_account_statuses_path(@account.id, current_params)
+    rescue ActionController::ParameterMissing
+      flash[:alert] = I18n.t('admin.statuses.no_status_selected')
+
+      redirect_to admin_account_statuses_path(@account.id, current_params)
     end
 
     private