Catch NoAvatarException
This commit is contained in:
parent
6a3e9a6df1
commit
dbeb3d0ce7
@ -40,6 +40,13 @@ class ActivityPubActorAction extends ManagedAction
|
|||||||
$profile = $user->getProfile();
|
$profile = $user->getProfile();
|
||||||
$url = $profile->profileurl;
|
$url = $profile->profileurl;
|
||||||
|
|
||||||
|
try {
|
||||||
|
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE)->displayUrl();
|
||||||
|
} catch (NoAvatarException $e) {
|
||||||
|
// TODO: fallback to current theme default avatar
|
||||||
|
$avatar = null;
|
||||||
|
}
|
||||||
|
|
||||||
$res = [
|
$res = [
|
||||||
'@context' => [
|
'@context' => [
|
||||||
"https://www.w3.org/ns/activitystreams",
|
"https://www.w3.org/ns/activitystreams",
|
||||||
@ -62,7 +69,7 @@ class ActivityPubActorAction extends ManagedAction
|
|||||||
'type' => 'Image',
|
'type' => 'Image',
|
||||||
'width' => 96,
|
'width' => 96,
|
||||||
'height' => 96,
|
'height' => 96,
|
||||||
'url' => $profile->getAvatar(AVATAR_PROFILE_SIZE)->displayUrl()
|
'url' => $avatar
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user