diff options
Diffstat (limited to 'server/lib/video-paths.ts')
-rw-r--r-- | server/lib/video-paths.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/lib/video-paths.ts b/server/lib/video-paths.ts index 0385e89cc..1708c479a 100644 --- a/server/lib/video-paths.ts +++ b/server/lib/video-paths.ts | |||
@@ -9,7 +9,7 @@ import { isStreamingPlaylist, MStreamingPlaylist, MStreamingPlaylistVideo, MVide | |||
9 | function generateVideoFilename (videoOrPlaylist: MVideo | MStreamingPlaylistVideo, isHls: boolean, resolution: number, extname: string) { | 9 | function generateVideoFilename (videoOrPlaylist: MVideo | MStreamingPlaylistVideo, isHls: boolean, resolution: number, extname: string) { |
10 | const video = extractVideo(videoOrPlaylist) | 10 | const video = extractVideo(videoOrPlaylist) |
11 | 11 | ||
12 | // FIXME: use a generated uuid instead, that will break compatibility with PeerTube < 3.2 | 12 | // FIXME: use a generated uuid instead, that will break compatibility with PeerTube < 3.1 |
13 | // const uuid = uuidv4() | 13 | // const uuid = uuidv4() |
14 | const uuid = video.uuid | 14 | const uuid = video.uuid |
15 | 15 | ||
@@ -69,7 +69,7 @@ function generateTorrentFileName (videoOrPlaylist: MVideo | MStreamingPlaylistVi | |||
69 | const video = extractVideo(videoOrPlaylist) | 69 | const video = extractVideo(videoOrPlaylist) |
70 | const extension = '.torrent' | 70 | const extension = '.torrent' |
71 | 71 | ||
72 | // FIXME: use a generated uuid instead, that will break compatibility with PeerTube < 3.2 | 72 | // FIXME: use a generated uuid instead, that will break compatibility with PeerTube < 3.1 |
73 | // const uuid = uuidv4() | 73 | // const uuid = uuidv4() |
74 | const uuid = video.uuid | 74 | const uuid = video.uuid |
75 | 75 | ||