mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 03:18:23 +00: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…
x
Reference in New Issue
Block a user