diff options
Diffstat (limited to 'server/lib')
-rw-r--r-- | server/lib/activitypub/actor.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/activitypub/actor.ts b/server/lib/activitypub/actor.ts index d37a695a7..45dd4443d 100644 --- a/server/lib/activitypub/actor.ts +++ b/server/lib/activitypub/actor.ts | |||
@@ -56,7 +56,7 @@ async function getOrCreateActorAndServerAndModel ( | |||
56 | // We don't have this actor in our database, fetch it on remote | 56 | // We don't have this actor in our database, fetch it on remote |
57 | if (!actor) { | 57 | if (!actor) { |
58 | const { result } = await fetchRemoteActor(actorUrl) | 58 | const { result } = await fetchRemoteActor(actorUrl) |
59 | if (result === undefined) throw new Error('Cannot fetch remote actor.') | 59 | if (result === undefined) throw new Error('Cannot fetch remote actor ' + actorUrl) |
60 | 60 | ||
61 | // Create the attributed to actor | 61 | // Create the attributed to actor |
62 | // In PeerTube a video channel is owned by an account | 62 | // In PeerTube a video channel is owned by an account |