mirror of
https://github.com/friendica/friendica
synced 2025-01-03 20:02:19 +00:00
cleaned up mess created when both people request friendship and one approves as duplex
This commit is contained in:
parent
21803e0cd3
commit
60ae0d8974
1 changed files with 11 additions and 1 deletions
|
@ -107,7 +107,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$r = q("SELECT * FROM `contact` WHERE ( ( `issued-id` != '' AND `issued-id` = '%s' ) OR ( `id` = %d AND `id` != 0 ) ) AND `uid` = %d LIMIT 1",
|
$r = q("SELECT * FROM `contact` WHERE ( ( `issued-id` != '' AND `issued-id` = '%s' ) OR ( `id` = %d AND `id` != 0 ) ) AND `uid` = %d AND `duplex` = 0 LIMIT 1",
|
||||||
dbesc($dfrn_id),
|
dbesc($dfrn_id),
|
||||||
intval($cid),
|
intval($cid),
|
||||||
intval($uid)
|
intval($uid)
|
||||||
|
@ -116,6 +116,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
|
||||||
if(! count($r)) {
|
if(! count($r)) {
|
||||||
logger('dfrn_confirm: Contact not found in DB.');
|
logger('dfrn_confirm: Contact not found in DB.');
|
||||||
notice( t('Contact not found.') . EOL );
|
notice( t('Contact not found.') . EOL );
|
||||||
|
notice( t('This may occasionally happen if contact was requested by both persons and it has already been approved.') . EOL );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -631,6 +632,15 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
|
||||||
xml_status(3,$message);
|
xml_status(3,$message);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// It's possible that the other person also requested friendship.
|
||||||
|
// If it is a duplex relationship, ditch the issued-id if one exists.
|
||||||
|
|
||||||
|
if($duplex) {
|
||||||
|
$r = q("UPDATE `contact` SET `issued-id` = '' WHERE `id` = %d LIMIT 1",
|
||||||
|
intval($dfrn_record)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
// We're good but now we have to scrape the profile photo and send notifications.
|
// We're good but now we have to scrape the profile photo and send notifications.
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue