]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/APContact.php
goaway with argument
[friendica.git] / src / Model / APContact.php
index 22f168d8f601baecf6bf524e5e2fe973861a2bd5..efd6ed0e9dc60c4216382f7415743dca360331a6 100644 (file)
@@ -63,7 +63,7 @@ class APContact extends BaseObject
         * @param boolean $update true = always update, false = never update, null = update when not found
         * @return array profile array
         */
-       public static function getProfileByURL($url, $update = null)
+       public static function getByURL($url, $update = null)
        {
                if (empty($url)) {
                        return false;
@@ -105,7 +105,7 @@ class APContact extends BaseObject
 
                $apcontact = [];
                $apcontact['url'] = $data['id'];
-               $apcontact['uuid'] = defaults($data, 'uuid', null);
+               $apcontact['uuid'] = defaults($data, 'diaspora:guid', null);
                $apcontact['type'] = defaults($data, 'type', null);
                $apcontact['following'] = defaults($data, 'following', null);
                $apcontact['followers'] = defaults($data, 'followers', null);