Commit b73ffbd3 authored by Douwe Maan's avatar Douwe Maan

Fix for snippets.

parent efe96293
...@@ -133,11 +133,13 @@ class NotificationService ...@@ -133,11 +133,13 @@ class NotificationService
# Add all users participating in the thread (author, assignee, comment authors) # Add all users participating in the thread (author, assignee, comment authors)
participants = participants =
if target.is_a?(Commit) if target.respond_to?(:participants)
target.participants
elsif target.is_a?(Commit)
author_ids = Note.for_commit_id(target.id).pluck(:author_id).uniq author_ids = Note.for_commit_id(target.id).pluck(:author_id).uniq
User.where(id: author_ids) User.where(id: author_ids)
else else
target.participants note.mentioned_users
end end
recipients = recipients.concat(participants) recipients = recipients.concat(participants)
......
Markdown is supported
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