Don't update mail contacts when polling
This commit is contained in:
parent
7d35cc6a09
commit
3bd99bccba
|
@ -38,7 +38,6 @@ class OnePoll
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Contact::updateFromProbe($contact_id, '', $force);
|
|
||||||
|
|
||||||
$contact = DBA::selectFirst('contact', [], ['id' => $contact_id]);
|
$contact = DBA::selectFirst('contact', [], ['id' => $contact_id]);
|
||||||
if (!DBA::isResult($contact)) {
|
if (!DBA::isResult($contact)) {
|
||||||
|
@ -46,6 +45,10 @@ class OnePoll
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (($contact['network'] != Protocol::MAIL) || $force) {
|
||||||
|
Contact::updateFromProbe($contact_id, '', $force);
|
||||||
|
}
|
||||||
|
|
||||||
// Special treatment for wrongly detected local contacts
|
// Special treatment for wrongly detected local contacts
|
||||||
if (!$force && ($contact['network'] != Protocol::DFRN) && Contact::isLocalById($contact_id)) {
|
if (!$force && ($contact['network'] != Protocol::DFRN) && Contact::isLocalById($contact_id)) {
|
||||||
Contact::updateFromProbe($contact_id, Protocol::DFRN, true);
|
Contact::updateFromProbe($contact_id, Protocol::DFRN, true);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user