mirror of
https://github.com/friendica/friendica
synced 2024-11-10 09:42:54 +00:00
Removed check for priority
This commit is contained in:
parent
e0490aff5c
commit
312ac73ae3
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue