]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/Cron.php
Merge pull request #9327 from nupplaphil/task/security_restructure
[friendica.git] / src / Worker / Cron.php
index 7a23a2c705db6aee111bc8b76d10472a989976d1..43a18ceafc8b355d87224ad1c5245c78baa0153c 100644 (file)
@@ -25,6 +25,7 @@ use Friendica\Core\Hook;
 use Friendica\Core\Logger;
 use Friendica\Core\Worker;
 use Friendica\DI;
+use Friendica\Model\Tag;
 
 class Cron
 {
@@ -74,6 +75,10 @@ class Cron
                // Repair entries in the database
                Worker::add(PRIORITY_LOW, 'RepairDatabase');
 
+               // Update trending tags cache for the community page
+               Tag::setLocalTrendingHashtags(24, 20);
+               Tag::setGlobalTrendingHashtags(24, 20);
+
                // Hourly cron calls
                if (DI::config()->get('system', 'last_cron_hourly', 0) + 3600 < time()) {