mirror of
https://github.com/friendica/friendica
synced 2024-11-18 22:23:42 +00:00
Issue 9705: Perform an age check when the post isn't fetched
This commit is contained in:
parent
56fbd0026a
commit
b160aa07b6
1 changed files with 6 additions and 0 deletions
|
@ -1698,6 +1698,12 @@ class Item
|
|||
// The contact-id should be set before "self::insert" was called - but there seems to be issues sometimes
|
||||
$item["contact-id"] = self::contactId($item);
|
||||
|
||||
if (!empty($item['direction']) && in_array($item['direction'], [Conversation::PUSH, Conversation::RELAY]) &&
|
||||
self::isTooOld($item)) {
|
||||
Logger::info('Item is too old', ['item' => $item]);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (!self::isValid($item)) {
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue