mirror of
https://github.com/friendica/friendica
synced 2025-05-21 17:04:12 +02:00
Issue 8943: Only check for too old postings for feeds
This commit is contained in:
parent
fe79aaf7f8
commit
8bc799ff38
2 changed files with 36 additions and 22 deletions
|
@ -503,7 +503,10 @@ class Feed
|
|||
$items[] = $item;
|
||||
break;
|
||||
} elseif (!Item::isValid($item)) {
|
||||
Logger::info('Feed is invalid', ['created' => $item['created'], 'uid' => $item['uid'], 'uri' => $item['uri']]);
|
||||
Logger::info('Feed item is invalid', ['created' => $item['created'], 'uid' => $item['uid'], 'uri' => $item['uri']]);
|
||||
continue;
|
||||
} elseif (Item::tooOld($item)) {
|
||||
Logger::info('Feed is too old', ['created' => $item['created'], 'uid' => $item['uid'], 'uri' => $item['uri']]);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue