Fix for "Undefined index: profile_url"
authorMichael <heluecht@pirati.ca>
Tue, 28 Apr 2020 19:36:10 +0000 (19:36 +0000)
committerMichael <heluecht@pirati.ca>
Tue, 28 Apr 2020 19:36:10 +0000 (19:36 +0000)
src/Core/Search.php
src/Module/Directory.php

index 8415723..4742ac5 100644 (file)
@@ -142,7 +142,7 @@ class Search
                $profiles = $results['profiles'] ?? [];
 
                foreach ($profiles as $profile) {
-                       $profile_url = $profile['profile_url'] ?? '';
+                       $profile_url = $profile['url'] ?? '';
                        $contactDetails = Contact::getDetailsByURL($profile_url, local_user());
 
                        $result = new ContactResult(
index 0709aa3..3d03f10 100644 (file)
@@ -120,9 +120,9 @@ class Directory extends BaseModule
         */
        public static function formatEntry(array $contact, $photo_size = 'photo')
        {
-               $itemurl = (($contact['addr'] != "") ? $contact['addr'] : $contact['profile_url']);
+               $itemurl = (($contact['addr'] != "") ? $contact['addr'] : $contact['url']);
 
-               $profile_link = $contact['profile_url'];
+               $profile_link = $contact['url'];
 
                $about = (($contact['about']) ? $contact['about'] . '<br />' : '');