Safer code - check that topic is present.
This commit is contained in:
parent
1715aa66d9
commit
9c461aced4
|
@ -132,7 +132,8 @@ class PostCreator
|
||||||
|
|
||||||
# We need to enqueue jobs after the transaction. Otherwise they might begin before the data has
|
# We need to enqueue jobs after the transaction. Otherwise they might begin before the data has
|
||||||
# been comitted.
|
# 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.trigger_post_process
|
||||||
|
|
||||||
post
|
post
|
||||||
|
|
Loading…
Reference in New Issue