]> git.mxchange.org Git - friendica.git/commitdiff
Blanks replaced
authorMichael <heluecht@pirati.ca>
Fri, 13 May 2022 07:44:36 +0000 (07:44 +0000)
committerMichael <heluecht@pirati.ca>
Fri, 13 May 2022 07:44:36 +0000 (07:44 +0000)
src/Worker/RequeuePosts.php

index 787e5b071010b73bd7713a3eaaaddd823824b00c..600a0d40b382e4a36f25823518310f42f70ce6c4 100644 (file)
@@ -35,7 +35,7 @@ class RequeuePosts
        {
                $deliveries = DBA::p("SELECT `item-uri`.`uri` AS `inbox` FROM `post-delivery` INNER JOIN `item-uri` ON `item-uri`.`id` = `post-delivery`.`inbox-id` GROUP BY `inbox`");
                while ($delivery = DBA::fetch($deliveries)) {
-               if (Worker::add(PRIORITY_HIGH, 'APDelivery', '', 0, $delivery['inbox'], 0)) {
+                       if (Worker::add(PRIORITY_HIGH, 'APDelivery', '', 0, $delivery['inbox'], 0)) {
                                Logger::info('Missing APDelivery worker added for inbox', ['inbox' => $delivery['inbox']]);
                        }
                }