aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/activitypub/videos
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-06-16 10:01:31 +0200
committerChocobozzz <me@florianbigard.com>2021-06-16 10:01:31 +0200
commitfd6584844b070cfc283902aba26f2853473e83d1 (patch)
treeab0c522838736a92c27ed3514c0fa91942c5e9bf /server/lib/activitypub/videos
parent82d19a2249bbc8648f64bebd87a8c23013ecfe1a (diff)
downloadPeerTube-fd6584844b070cfc283902aba26f2853473e83d1.tar.gz
PeerTube-fd6584844b070cfc283902aba26f2853473e83d1.tar.zst
PeerTube-fd6584844b070cfc283902aba26f2853473e83d1.zip
Resolve object id from actors too
Diffstat (limited to 'server/lib/activitypub/videos')
-rw-r--r--server/lib/activitypub/videos/get.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/lib/activitypub/videos/get.ts b/server/lib/activitypub/videos/get.ts
index f0982bd98..7bb14adc4 100644
--- a/server/lib/activitypub/videos/get.ts
+++ b/server/lib/activitypub/videos/get.ts
@@ -61,6 +61,7 @@ async function getOrCreateAPVideo (
61 const { videoObject } = await fetchRemoteVideo(videoUrl) 61 const { videoObject } = await fetchRemoteVideo(videoUrl)
62 if (!videoObject) throw new Error('Cannot fetch remote video with url: ' + videoUrl) 62 if (!videoObject) throw new Error('Cannot fetch remote video with url: ' + videoUrl)
63 63
64 // videoUrl is just an alias/rediraction, so process object id instead
64 if (videoObject.id !== videoUrl) return getOrCreateAPVideo({ ...options, fetchType: 'all', videoObject }) 65 if (videoObject.id !== videoUrl) return getOrCreateAPVideo({ ...options, fetchType: 'all', videoObject })
65 66
66 try { 67 try {