diff options
| -rw-r--r-- | app/services/notification_recipient_service.rb | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/app/services/notification_recipient_service.rb b/app/services/notification_recipient_service.rb index 8c7a36d4cb0..0382ecd4abb 100644 --- a/app/services/notification_recipient_service.rb +++ b/app/services/notification_recipient_service.rb @@ -252,6 +252,10 @@ module NotificationRecipientService          note.noteable        end +      # NOTE: may be nil, in the case of a PersonalSnippet +      # +      # (this is okay because NotificationRecipient is written +      # to handle nil projects)        def project          note.project        end | 
