2
0

Fix "new replies available" reporting a false positive for re-fetched root status (#35602)

This commit is contained in:
Eugen Rochko
2025-07-30 18:09:16 +02:00
committed by GitHub
parent 92bf55afd0
commit 2257612deb

View File

@@ -86,9 +86,7 @@ class ActivityPub::FetchAllRepliesWorker
return if root_status_body.nil?
@batch.within do
FetchReplyWorker.perform_async(root_status_uri, { **options.deep_stringify_keys, 'prefetched_body' => root_status_body })
end
FetchReplyWorker.perform_async(root_status_uri, { **options.deep_stringify_keys.except('batch_id'), 'prefetched_body' => root_status_body })
get_replies(root_status_body, MAX_PAGES, options)
end