From ccd484643d17bac02e296456dce29b6053514d69 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 17 Nov 2016 23:06:22 +0000 Subject: [PATCH] Polling feeds is now done with a higher priority. --- include/cron.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cron.php b/include/cron.php index fea5b3961d..c92396dc7a 100644 --- a/include/cron.php +++ b/include/cron.php @@ -325,7 +325,7 @@ function cron_poll_contacts($argc, $argv) { logger("Polling ".$contact["network"]." ".$contact["id"]." ".$contact["nick"]." ".$contact["name"]); - if ($contact["remote_self"]) { + if (($contact['network'] == NETWORK_FEED) AND ($contact['priority'] <= 3)) { proc_run(PRIORITY_MEDIUM, 'include/onepoll.php', $contact['id']); } else { proc_run(PRIORITY_LOW, 'include/onepoll.php', $contact['id']);