From: Michael Date: Fri, 10 Jul 2020 19:49:11 +0000 (+0000) Subject: Fix message "empty network" in gcontact::getid X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=87f054a6423109c5037657d529a48bf5eb65d592;p=friendica.git Fix message "empty network" in gcontact::getid --- diff --git a/src/Protocol/DFRN.php b/src/Protocol/DFRN.php index cd9fc0ca14..95780bec70 100644 --- a/src/Protocol/DFRN.php +++ b/src/Protocol/DFRN.php @@ -1560,7 +1560,7 @@ class DFRN if (DBA::isResult($contact_old) && !$onlyfetch) { Logger::log("Check if contact details for contact " . $contact_old["id"] . " (" . $contact_old["nick"] . ") have to be updated.", Logger::DEBUG); - $poco = ["url" => $contact_old["url"]]; + $poco = ["url" => $contact_old["url"], "network" => $contact_old["network"]]; // When was the last change to name or uri? $name_element = $xpath->query($element . "/atom:name", $context)->item(0);