diff options
Diffstat (limited to 'shared/extra-utils')
-rw-r--r-- | shared/extra-utils/videos/videos.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/extra-utils/videos/videos.ts b/shared/extra-utils/videos/videos.ts index d1ac48292..7a77a03ad 100644 --- a/shared/extra-utils/videos/videos.ts +++ b/shared/extra-utils/videos/videos.ts | |||
@@ -465,7 +465,7 @@ function rateVideo (url: string, accessToken: string, id: number, rating: string | |||
465 | function parseTorrentVideo (server: ServerInfo, videoUUID: string, resolution: number) { | 465 | function parseTorrentVideo (server: ServerInfo, videoUUID: string, resolution: number) { |
466 | return new Promise<any>((res, rej) => { | 466 | return new Promise<any>((res, rej) => { |
467 | const torrentName = videoUUID + '-' + resolution + '.torrent' | 467 | const torrentName = videoUUID + '-' + resolution + '.torrent' |
468 | const torrentPath = join(root(), 'test' + server.serverNumber, 'torrents', torrentName) | 468 | const torrentPath = join(root(), 'test' + server.internalServerNumber, 'torrents', torrentName) |
469 | readFile(torrentPath, (err, data) => { | 469 | readFile(torrentPath, (err, data) => { |
470 | if (err) return rej(err) | 470 | if (err) return rej(err) |
471 | 471 | ||