FIX: Don't try to generate embeddings of posts in deleted topics (#433)
This commit is contained in:
parent
f65314bdab
commit
d4e23e0df6
|
@ -12,6 +12,7 @@ module Jobs
|
|||
|
||||
topic = target.is_a?(Topic) ? target : target.topic
|
||||
post = target.is_a?(Post) ? target : target.first_post
|
||||
return unless topic.present? && post.present?
|
||||
return if topic.private_message? && !SiteSetting.ai_embeddings_generate_for_pms
|
||||
return if post.raw.blank?
|
||||
|
||||
|
|
Loading…
Reference in New Issue