From: Hypolite Petovan Date: Sat, 6 Jun 2020 18:36:04 +0000 (-0400) Subject: Add probe data return if Contact::getDetailsByURL didn't yield a result in Contact... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=be41095936ad54fada7fd2f1e7a8e95866c1a9c2;p=friendica.git Add probe data return if Contact::getDetailsByURL didn't yield a result in Contact::getDetailsByAddr --- diff --git a/src/Model/Contact.php b/src/Model/Contact.php index 02f9e829f2..470bff1077 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -1168,7 +1168,7 @@ class Contact if (!DBA::isResult($r)) { $data = Probe::uri($addr); - $profile = self::getDetailsByURL($data['url'], $uid); + $profile = self::getDetailsByURL($data['url'], $uid, $data); } else { $profile = $r[0]; }