mirror of
https://github.com/friendica/friendica
synced 2024-11-11 03:42:54 +00:00
Fixed query (not all duplicates had been found)
This commit is contained in:
parent
ef02a1cb7b
commit
503a5be06c
2 changed files with 7 additions and 5 deletions
|
@ -434,10 +434,12 @@ class PostUpdate
|
||||||
|
|
||||||
Logger::info('Start');
|
Logger::info('Start');
|
||||||
|
|
||||||
$contacts = DBA::p("SELECT ANY_VALUE(`id`) AS `id` FROM `contact`
|
$contacts = DBA::p("SELECT ANY_VALUE(`id`) AS `id`, ANY_VALUE(`nurl`) AS `nurl` FROM `contact`
|
||||||
WHERE EXISTS (SELECT `nurl` FROM `contact` AS `c2`
|
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` = `contact`.`network`)
|
WHERE `c2`.`nurl` = `contact`.`nurl` AND `c2`.`id` != `contact`.`id` AND `c2`.`uid` = `contact`.`uid` AND `c2`.`network` IN (?, ?, ?))
|
||||||
AND `network` IN (?, ?, ?) GROUP BY `nurl`", Protocol::DIASPORA, Protocol::OSTATUS, Protocol::ACTIVITYPUB);
|
AND (`network` IN (?, ?, ?) OR (`uid` = ?)) GROUP BY `nurl`, `uid`",
|
||||||
|
Protocol::DIASPORA, Protocol::OSTATUS, Protocol::ACTIVITYPUB,
|
||||||
|
Protocol::DIASPORA, Protocol::OSTATUS, Protocol::ACTIVITYPUB, 0);
|
||||||
|
|
||||||
while ($contact = DBA::fetch($contacts)) {
|
while ($contact = DBA::fetch($contacts)) {
|
||||||
Logger::info('Remove duplicates', ['id' => $contact['id']]);
|
Logger::info('Remove duplicates', ['id' => $contact['id']]);
|
||||||
|
|
|
@ -1929,13 +1929,13 @@ class Contact extends BaseObject
|
||||||
{
|
{
|
||||||
$contact = DBA::selectFirst('contact', ['nurl', 'uid', 'id'], ['id' => $contact_id]);
|
$contact = DBA::selectFirst('contact', ['nurl', 'uid', 'id'], ['id' => $contact_id]);
|
||||||
if (!DBA::isResult($contact)) {
|
if (!DBA::isResult($contact)) {
|
||||||
return $ret;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Search for duplicated contacts and get rid of them
|
// Search for duplicated contacts and get rid of them
|
||||||
self::handleDuplicates($contact['nurl'], $contact['uid'], $contact['id']);
|
self::handleDuplicates($contact['nurl'], $contact['uid'], $contact['id']);
|
||||||
|
|
||||||
return $ret;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue