mirror of
https://github.com/friendica/friendica
synced 2025-05-01 03:04:23 +02:00
Warnings/Errors reduced - improved relay processing
This commit is contained in:
parent
1db70b8935
commit
ceb88c10e6
6 changed files with 74 additions and 21 deletions
|
@ -55,7 +55,7 @@ class UpdateContacts
|
|||
$condition = array_merge(['local-data' => true], $condition);
|
||||
}
|
||||
|
||||
$condition = array_merge(["`next-update` < ?", DateTimeFormat::utcNow()], $condition);
|
||||
$condition = DBA::mergeConditions(["`next-update` < ?", DateTimeFormat::utcNow()], $condition);
|
||||
$contacts = DBA::select('contact', ['id'], $condition, ['order' => ['next-update'], 'limit' => $limit]);
|
||||
$count = 0;
|
||||
while ($contact = DBA::fetch($contacts)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue