From b10e334c5396519600ec2f2615a0b8109ec41bae Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 10 Mar 2020 09:44:26 +0000 Subject: [PATCH] Polling Mails is now done with a higher priority --- src/Worker/Cron.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;