Safer code - check that topic is present.

This commit is contained in:
Robin Ward 2013-04-08 11:01:55 -04:00
parent 1715aa66d9
commit 9c461aced4

View File

@ -132,7 +132,8 @@ class PostCreator
# We need to enqueue jobs after the transaction. Otherwise they might begin before the data has
# been comitted.
Jobs.enqueue(:feature_topic_users, topic_id: topic.id)
Jobs.enqueue(:feature_topic_users, topic_id: topic.id) if topic.present?
post.trigger_post_process
post