From eededdd4beeb995a270172bb1985228ee09dbd41 Mon Sep 17 00:00:00 2001 From: Johannes Schleifenbaum Date: Fri, 7 Dec 2012 14:55:56 +0100 Subject: [PATCH] fix notify_team on wall --- app/observers/note_observer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/observers/note_observer.rb b/app/observers/note_observer.rb index 083aa70..fe01efc 100644 --- a/app/observers/note_observer.rb +++ b/app/observers/note_observer.rb @@ -21,7 +21,7 @@ class NoteObserver < ActiveRecord::Observer # Notifies the whole team except the author of note def notify_team(note) # Note: wall posts are not "attached" to anything, so fall back to "Wall" - noteable_type = note.noteable_type || "Wall" + noteable_type = note.noteable_type.presence || "Wall" notify_method = "note_#{noteable_type.underscore}_email".to_sym if Notify.respond_to? notify_method -- libgit2 0.21.2