aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/activitypub/videos.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/lib/activitypub/videos.ts')
-rw-r--r--server/lib/activitypub/videos.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/lib/activitypub/videos.ts b/server/lib/activitypub/videos.ts
index 708f4a897..5b429709f 100644
--- a/server/lib/activitypub/videos.ts
+++ b/server/lib/activitypub/videos.ts
@@ -122,10 +122,10 @@ function videoFileActivityUrlToDBAttributes (videoCreated: VideoModel, videoObje
122 return u.mimeType === 'application/x-bittorrent;x-scheme-handler/magnet' && u.width === fileUrl.width 122 return u.mimeType === 'application/x-bittorrent;x-scheme-handler/magnet' && u.width === fileUrl.width
123 }) 123 })
124 124
125 if (!magnet) throw new Error('Cannot find associated magnet uri for file ' + fileUrl.url) 125 if (!magnet) throw new Error('Cannot find associated magnet uri for file ' + fileUrl.href)
126 126
127 const parsed = magnetUtil.decode(magnet.url) 127 const parsed = magnetUtil.decode(magnet.href)
128 if (!parsed || isVideoFileInfoHashValid(parsed.infoHash) === false) throw new Error('Cannot parse magnet URI ' + magnet.url) 128 if (!parsed || isVideoFileInfoHashValid(parsed.infoHash) === false) throw new Error('Cannot parse magnet URI ' + magnet.href)
129 129
130 const attribute = { 130 const attribute = {
131 extname: VIDEO_MIMETYPE_EXT[ fileUrl.mimeType ], 131 extname: VIDEO_MIMETYPE_EXT[ fileUrl.mimeType ],