From: Toshi MARUYAMA Date: Fri, 22 Nov 2019 14:55:04 +0000 (+0000) Subject: cleanup: rubocop: fix Layout/EmptyLineAfterGuardClause in app/models/mailer.rb X-Git-Tag: 4.2.0~1468 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=83f96f072ed08a948756c36b471d74cc5a0c80fe;p=redmine.git cleanup: rubocop: fix Layout/EmptyLineAfterGuardClause in app/models/mailer.rb git-svn-id: http://svn.redmine.org/redmine/trunk@19172 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/models/mailer.rb b/app/models/mailer.rb index ed923ae68..cb2c9f39e 100644 --- a/app/models/mailer.rb +++ b/app/models/mailer.rb @@ -578,6 +578,7 @@ class Mailer < ActionMailer::Base if options[:version] && target_version_id.blank? raise ActiveRecord::RecordNotFound.new("Couldn't find Version named #{options[:version]}") end + user_ids = options[:users] scope = Issue.open.where("#{Issue.table_name}.assigned_to_id IS NOT NULL" + @@ -704,6 +705,7 @@ class Mailer < ActionMailer::Base def self.deliver_mail(mail) return false if mail.to.blank? && mail.cc.blank? && mail.bcc.blank? + begin # Log errors when raise_delivery_errors is set to false, Rails does not mail.raise_delivery_errors = true