mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 15:25:35 +08:00
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
|
||||
# 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
|
||||
|
|
Loading…
Reference in New Issue
Block a user