mirror of
https://github.com/friendica/friendica
synced 2024-11-13 01:02:53 +00:00
Don't check the date on regular feeds
This commit is contained in:
parent
52b2f67644
commit
fb18325b6b
1 changed files with 1 additions and 1 deletions
|
@ -2200,7 +2200,7 @@ class OStatus
|
||||||
$last_update = 'now -30 days';
|
$last_update = 'now -30 days';
|
||||||
}
|
}
|
||||||
|
|
||||||
$check_date = DateTimeFormat::utc($last_update);
|
$check_date = $feed_mode ? '' : DateTimeFormat::utc($last_update);
|
||||||
$authorid = Contact::getIdForURL($owner["url"], 0, true);
|
$authorid = Contact::getIdForURL($owner["url"], 0, true);
|
||||||
|
|
||||||
$condition = ["`uid` = ? AND `received` > ? AND NOT `deleted`
|
$condition = ["`uid` = ? AND `received` > ? AND NOT `deleted`
|
||||||
|
|
Loading…
Reference in a new issue