From: Michael Date: Tue, 10 Mar 2020 09:44:26 +0000 (+0000) Subject: Polling Mails is now done with a higher priority X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b10e334c5396519600ec2f2615a0b8109ec41bae;p=friendica.git Polling Mails is now done with a higher priority --- diff --git a/src/Worker/Cron.php b/src/Worker/Cron.php index e22051cfc6..714f840595 100644 --- a/src/Worker/Cron.php +++ b/src/Worker/Cron.php @@ -282,7 +282,7 @@ class Cron } } - if (($contact['network'] == Protocol::FEED) && ($contact['priority'] <= 3)) { + if ((($contact['network'] == Protocol::FEED) && ($contact['priority'] <= 3)) || ($contact['network'] == Protocol::MAIL)) { $priority = PRIORITY_MEDIUM; } elseif ($contact['archive']) { $priority = PRIORITY_NEGLIGIBLE;