summaryrefslogtreecommitdiff
path: root/app/models/commit.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/commit.rb')
-rw-r--r--app/models/commit.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/app/models/commit.rb b/app/models/commit.rb
index 6677dcb1e34..1cabc060c2a 100644
--- a/app/models/commit.rb
+++ b/app/models/commit.rb
@@ -139,15 +139,14 @@ class Commit
users << author
users << committer
- mentions = []
- mentions << self.mentioned_users(current_user, project)
+ users.push *self.mentioned_users(current_user, project)
notes(project).each do |note|
users << note.author
- mentions << note.mentioned_users(current_user, project)
+ users.push *note.mentioned_users(current_user, project)
end
- users.concat(mentions.reduce([], :|)).uniq
+ users.uniq
end
def notes(project)