Skip to content
Snippets Groups Projects
Commit 42363c32 authored by Felix Schäfer's avatar Felix Schäfer
Browse files

Better checks for previous commit.

parent f333f43a
Branches
Tags
No related merge requests found
......@@ -396,8 +396,8 @@ class Mailer < ActionMailer::Base
# if he doesn't want to receive notifications about what he does
@author ||= User.current
if @author.pref[:no_self_notified]
recipients((recipients.is_a?(Array) ? recipients : [recipients]) - [@author.mail]) if recipients
cc((cc.is_a?(Array) ? cc : [cc]) - [@author.mail]) if cc
recipients((recipients.is_a?(Array) ? recipients : [recipients]) - [@author.mail]) if recipients.present?
cc((cc.is_a?(Array) ? cc : [cc]) - [@author.mail]) if cc.present?
end
notified_users = [recipients, cc].flatten.compact.uniq
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment