]> git.mxchange.org Git - friendica.git/commitdiff
Add probe data return if Contact::getDetailsByURL didn't yield a result in Contact...
authorHypolite Petovan <hypolite@mrpetovan.com>
Sat, 6 Jun 2020 18:36:04 +0000 (14:36 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Wed, 10 Jun 2020 13:56:01 +0000 (09:56 -0400)
src/Model/Contact.php

index 02f9e829f29f69c341935caf3678617f492fea7f..470bff10771f0757fd8f7da78fc0b44e31bcb3da 100644 (file)
@@ -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];
                }