don't attempt to send emails on deleted topics

This commit is contained in:
Sam 2014-05-14 10:34:28 +10:00
parent dc06401479
commit b329e23f85

View file

@ -6,7 +6,8 @@ module Jobs
post_id = args[:post_id]
if post_id
post = Post.with_deleted.find_by(id: post_id)
return if post && post.trashed?
# our topic can be deleted as well
return if (post && post.trashed?) || !post.topic
end
raise Discourse::InvalidParameters.new(:post_id) unless post