mirror of
https://github.com/friendica/friendica
synced 2025-04-25 20:30:11 +00:00
Less blocking clean up, adding of missing posts
This commit is contained in:
parent
c740509a22
commit
7f4722ce6f
2 changed files with 91 additions and 25 deletions
|
@ -101,7 +101,7 @@ class UpdateContacts
|
|||
*/
|
||||
private static function getContactsToUpdate(array $condition, array $ids = [], int $limit)
|
||||
{
|
||||
$contacts = DBA::select('contact', ['id'], $condition, ['limit' => $limit, 'order' => ['last-update']]);
|
||||
$contacts = DBA::select('contact', ['id'], $condition, ['limit' => $limit]);
|
||||
while ($contact = DBA::fetch($contacts)) {
|
||||
$ids[$contact['id']] = $contact['id'];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue