Browse Source

Update AP Profile Transformer, fix movedTo attribute

Daniel Supernault 1 year ago
parent
commit
63100fe950
1 changed files with 4 additions and 1 deletions
  1. 4 1
      app/Transformer/ActivityPub/ProfileTransformer.php

+ 4 - 1
app/Transformer/ActivityPub/ProfileTransformer.php

@@ -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'];
+                }
             }
         }