Fix ThreadResolveWorker getting queued with invalid URLs (#9628)
This commit is contained in:
parent
17cd91c777
commit
aa9a20cde0
3 changed files with 14 additions and 2 deletions
|
@ -57,7 +57,7 @@ class OStatus::Activity::Creation < OStatus::Activity::Base
|
|||
save_emojis(status)
|
||||
end
|
||||
|
||||
if thread? && status.thread.nil?
|
||||
if thread? && status.thread.nil? && Request.valid_url?(thread.second)
|
||||
Rails.logger.debug "Trying to attach #{status.id} (#{id}) to #{thread.first}"
|
||||
ThreadResolveWorker.perform_async(status.id, thread.second)
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue