]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/Cron.php
add the new CheckRelMeProfileLink class to the worker
[friendica.git] / src / Worker / Cron.php
index 21d2f8a20560fcb95804a5e7a45cdfdba477257a..cd155dbbbe17b5e625533157737752445b4759c8 100644 (file)
@@ -27,6 +27,7 @@ use Friendica\Core\Worker;
 use Friendica\Database\DBA;
 use Friendica\DI;
 use Friendica\Model\Tag;
+use Friendica\Model\User;
 use Friendica\Protocol\ActivityPub\Queue;
 use Friendica\Protocol\Relay;
 
@@ -85,6 +86,7 @@ class Cron
                // Hourly cron calls
                if (DI::config()->get('system', 'last_cron_hourly', 0) + 3600 < time()) {
 
+
                        // Update trending tags cache for the community page
                        Tag::setLocalTrendingHashtags(24, 20);
                        Tag::setGlobalTrendingHashtags(24, 20);
@@ -132,6 +134,10 @@ class Cron
                                Worker::add(Worker::PRIORITY_LOW, 'OptimizeTables');
                        }
 
+                       foreach (User::getList($start=1, $limit=PHP_INT_MAX, $type='active') as $user) {
+                               Worker::add(Worker::PRIORITY_LOW, 'CheckRelMeProfileLink', $user['uid']);
+                       }
+
                        // Resubscribe to relay servers
                        Relay::reSubscribe();