Avoid warnings
This commit is contained in:
parent
60b0759b50
commit
dd38b7e329
|
@ -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);
|
||||
|
|
|
@ -739,7 +739,7 @@ class ActivityPub
|
|||
$profile = ['network' => Protocol::ACTIVITYPUB];
|
||||
$profile['nick'] = $apcontact['nick'];
|
||||
$profile['name'] = $apcontact['name'];
|
||||
$profile['guid'] = $apcontact['diaspora:guid'];
|
||||
$profile['guid'] = $apcontact['uuid'];
|
||||
$profile['url'] = $apcontact['url'];
|
||||
$profile['addr'] = $apcontact['addr'];
|
||||
$profile['alias'] = $apcontact['alias'];
|
||||
|
|
Loading…
Reference in New Issue
Block a user