Fix Undefined index: photo in ActivityPub/Receiver

This commit is contained in:
Hypolite Petovan 2018-10-16 18:29:28 -04:00
parent cb854b8b10
commit 341b83d1df
1 changed files with 4 additions and 4 deletions

View File

@ -461,7 +461,7 @@ class Receiver
logger('Switch contact ' . $cid . ' (' . $profile['url'] . ') for user ' . $uid . ' to ActivityPub');
$photo = $profile['photo'];
$photo = defaults($profile, 'photo', null);
unset($profile['photo']);
unset($profile['baseurl']);