From: Jean-Philippe Lang Date: Tue, 11 Sep 2007 18:13:32 +0000 (+0000) Subject: Fixed: watchers should be notified even if they uncheck 'mail notifications' X-Git-Tag: 0.6.0~158 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=29348fafb7ca43cb00ef80f29e61167647df0cd8;p=redmine.git 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 --- 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