mirror of
https://github.com/friendica/friendica
synced 2025-04-24 23:50:20 +00:00
Renamed function
This commit is contained in:
parent
438394bc1d
commit
3b92f7357c
2 changed files with 7 additions and 26 deletions
|
@ -434,7 +434,7 @@ class PostUpdate
|
|||
|
||||
Logger::info('Start');
|
||||
|
||||
$contacts = DBA::p("SELECT ANY_VALUE(`id`) AS `id`, ANY_VALUE(`nurl`) AS `nurl` FROM `contact`
|
||||
$contacts = DBA::p("SELECT `nurl`, `uid` FROM `contact`
|
||||
WHERE EXISTS (SELECT `nurl` FROM `contact` AS `c2`
|
||||
WHERE `c2`.`nurl` = `contact`.`nurl` AND `c2`.`id` != `contact`.`id` AND `c2`.`uid` = `contact`.`uid` AND `c2`.`network` IN (?, ?, ?) AND NOT `deleted`)
|
||||
AND (`network` IN (?, ?, ?) OR (`uid` = ?)) AND NOT `deleted` GROUP BY `nurl`, `uid`",
|
||||
|
@ -442,8 +442,8 @@ class PostUpdate
|
|||
Protocol::DIASPORA, Protocol::OSTATUS, Protocol::ACTIVITYPUB, 0);
|
||||
|
||||
while ($contact = DBA::fetch($contacts)) {
|
||||
Logger::info('Remove duplicates', ['id' => $contact['id']]);
|
||||
Contact::handleDuplicateByID($contact['id']);
|
||||
Logger::info('Remove duplicates', ['nurl' => $contact['nurl'], 'uid' => $contact['uid']]);
|
||||
Contact::removeDuplicates($contact['nurl'], $contact['uid']);
|
||||
}
|
||||
|
||||
DBA::close($contact);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue