From 312ac73ae3eef377d6273025294ff2338d18755f Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 17 Aug 2020 15:49:34 +0000 Subject: [PATCH] Removed check for priority --- src/Protocol/Feed.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Protocol/Feed.php b/src/Protocol/Feed.php index 28e0493dae..560fe005e6 100644 --- a/src/Protocol/Feed.php +++ b/src/Protocol/Feed.php @@ -618,8 +618,8 @@ class Feed */ private static function adjustPollFrequency(array $contact, array $creation_dates) { - if (($contact['priority'] > 3) || ($contact['network'] != Protocol::FEED)) { - Logger::info('Contact is no feed or has a low priority, skip.', ['id' => $contact['id'], 'uid' => $contact['uid'], 'url' => $contact['url'], 'priority' => $contact['priority'], 'network' => $contact['network']]); + if ($contact['network'] != Protocol::FEED) { + Logger::info('Contact is no feed, skip.', ['id' => $contact['id'], 'uid' => $contact['uid'], 'url' => $contact['url'], 'network' => $contact['network']]); return; }