Update AP Profile Transformer, fix movedTo attribute

This commit is contained in:
Daniel Supernault 2024-03-08 03:56:53 -07:00
parent 25f3fa06af
commit 63100fe950
No known key found for this signature in database
GPG Key ID: 23740873EE6F76A1
1 changed files with 4 additions and 1 deletions

View File

@ -65,7 +65,10 @@ class ProfileTransformer extends Fractal\TransformerAbstract
}
if ($profile->moved_to_profile_id) {
$res['movedTo'] = AccountService::get($profile->moved_to_profile_id)['url'];
$movedTo = AccountService::get($profile->moved_to_profile_id);
if ($movedTo && isset($movedTo['url'], $movedTo['id'])) {
$res['movedTo'] = $movedTo['url'];
}
}
}