FIX: check for existence of post before creating notification
This commit is contained in:
parent
4cce564b35
commit
f861345888
|
@ -280,7 +280,7 @@ class PostAlerter
|
||||||
|
|
||||||
DiscourseEvent.trigger(:before_create_notification, user, type, post, opts)
|
DiscourseEvent.trigger(:before_create_notification, user, type, post, opts)
|
||||||
|
|
||||||
return if user.blank? || user.bot?
|
return if user.blank? || user.bot? || post.blank?
|
||||||
return if (topic = post.topic).blank?
|
return if (topic = post.topic).blank?
|
||||||
|
|
||||||
is_liked = type == Notification.types[:liked]
|
is_liked = type == Notification.types[:liked]
|
||||||
|
|
Loading…
Reference in New Issue