Improved processing of leftover queued posts

This commit is contained in:
Michael 2023-10-26 05:01:54 +00:00
parent 35cf140cb2
commit c7739ef9c4
2 changed files with 2 additions and 6 deletions

View File

@ -752,6 +752,7 @@ class Processor
{
$post = self::getUriIdForFeaturedCollection($activity);
if (empty($post)) {
Queue::remove($activity);
return;
}

View File

@ -252,12 +252,7 @@ class Queue
{
$entries = DBA::select('inbox-entry', ['id', 'type', 'object-type', 'object-id', 'in-reply-to-id'], ["`trust` AND `wid` IS NULL"], ['order' => ['id' => true]]);
while ($entry = DBA::fetch($entries)) {
// Don't process entries of items that are answer to nonexistent posts
if (!empty($entry['in-reply-to-id']) && !Post::exists(['uri' => $entry['in-reply-to-id']])) {
continue;
}
// We don't need to process entries that depend on already existing entries.
if (!empty($entry['in-reply-to-id']) && DBA::exists('inbox-entry', ["`id` != ? AND `object-id` = ?", $entry['id'], $entry['in-reply-to-id']])) {
if (!self::isProcessable($entry['id'])) {
continue;
}
Logger::debug('Process leftover entry', $entry);