From 29348fafb7ca43cb00ef80f29e61167647df0cd8 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Tue, 11 Sep 2007 18:13:32 +0000 Subject: [PATCH] Fixed: watchers should be notified even if they uncheck 'mail notifications' git-svn-id: http://redmine.rubyforge.org/svn/trunk@724 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/redmine/acts_as_watchable/lib/acts_as_watchable.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/redmine/acts_as_watchable/lib/acts_as_watchable.rb b/lib/redmine/acts_as_watchable/lib/acts_as_watchable.rb index d62742cac..c789017e5 100644 --- a/lib/redmine/acts_as_watchable/lib/acts_as_watchable.rb +++ b/lib/redmine/acts_as_watchable/lib/acts_as_watchable.rb @@ -37,7 +37,7 @@ module Redmine end def watcher_recipients - self.watchers.collect { |w| w.user.mail if w.user.mail_notification }.compact + self.watchers.collect { |w| w.user.mail } end module ClassMethods -- 2.39.5