From 17aa2f68c260ece0bbfa10ebfeb7c659b3585505 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 16 Jul 2016 09:41:24 +0000 Subject: [PATCH] Don't compare with Hash. git-svn-id: http://svn.redmine.org/redmine/trunk@15670 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/controllers/watchers_controller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/watchers_controller.rb b/app/controllers/watchers_controller.rb index 818ed3597..7ea56999b 100644 --- a/app/controllers/watchers_controller.rb +++ b/app/controllers/watchers_controller.rb @@ -35,7 +35,7 @@ class WatchersController < ApplicationController def create user_ids = [] - if params[:watcher].is_a?(Hash) + if params[:watcher] user_ids << (params[:watcher][:user_ids] || params[:watcher][:user_id]) else user_ids << params[:user_id] @@ -54,7 +54,7 @@ class WatchersController < ApplicationController end def append - if params[:watcher].is_a?(Hash) + if params[:watcher] user_ids = params[:watcher][:user_ids] || [params[:watcher][:user_id]] @users = User.active.visible.where(:id => user_ids).to_a end