diff options
Diffstat (limited to 'shared/extra-utils/videos/videos.ts')
-rw-r--r-- | shared/extra-utils/videos/videos.ts | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/shared/extra-utils/videos/videos.ts b/shared/extra-utils/videos/videos.ts index 1533f37ab..75f7d58d7 100644 --- a/shared/extra-utils/videos/videos.ts +++ b/shared/extra-utils/videos/videos.ts | |||
@@ -19,7 +19,7 @@ import { | |||
19 | import * as validator from 'validator' | 19 | import * as validator from 'validator' |
20 | import { VideoDetails, VideoPrivacy } from '../../models/videos' | 20 | import { VideoDetails, VideoPrivacy } from '../../models/videos' |
21 | import { VIDEO_CATEGORIES, VIDEO_LANGUAGES, loadLanguages, VIDEO_LICENCES, VIDEO_PRIVACIES } from '../../../server/initializers/constants' | 21 | import { VIDEO_CATEGORIES, VIDEO_LANGUAGES, loadLanguages, VIDEO_LICENCES, VIDEO_PRIVACIES } from '../../../server/initializers/constants' |
22 | import { dateIsValid, webtorrentAdd } from '../miscs/miscs' | 22 | import { dateIsValid, webtorrentAdd, buildServerDirectory } from '../miscs/miscs' |
23 | 23 | ||
24 | loadLanguages() | 24 | loadLanguages() |
25 | 25 | ||
@@ -308,10 +308,8 @@ async function checkVideoFilesWereRemoved ( | |||
308 | join('redundancy', 'hls') | 308 | join('redundancy', 'hls') |
309 | ] | 309 | ] |
310 | ) { | 310 | ) { |
311 | const testDirectory = 'test' + serverNumber | ||
312 | |||
313 | for (const directory of directories) { | 311 | for (const directory of directories) { |
314 | const directoryPath = join(root(), testDirectory, directory) | 312 | const directoryPath = buildServerDirectory(serverNumber, directory) |
315 | 313 | ||
316 | const directoryExists = await pathExists(directoryPath) | 314 | const directoryExists = await pathExists(directoryPath) |
317 | if (directoryExists === false) continue | 315 | if (directoryExists === false) continue |