]> git.mxchange.org Git - friendica.git/commitdiff
Add alias field to ActivityPub contacts
authorHypolite Petovan <hypolite@mrpetovan.com>
Sat, 9 Feb 2019 03:32:50 +0000 (22:32 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sat, 9 Feb 2019 03:32:50 +0000 (22:32 -0500)
src/Model/APContact.php

index 3d196c46de784944cd97d5e22a63f56233316b18..bf36306b4119901a4d5587dfa33605a2400f4fd6 100644 (file)
@@ -192,7 +192,7 @@ class APContact extends BaseObject
                DBA::update('apcontact', $apcontact, ['url' => $url], true);
 
                // Update some data in the contact table with various ways to catch them all
-               $contact_fields = ['name' => $apcontact['name'], 'about' => $apcontact['about']];
+               $contact_fields = ['name' => $apcontact['name'], 'about' => $apcontact['about'], 'alias' => $apcontact['alias']];
 
                // Fetch the type and match it with the contact type
                $contact_types = array_keys(ActivityPub::ACCOUNT_TYPES, $apcontact['type']);