1
0
mirror of https://github.com/snobu/destreamer.git synced 2026-02-10 08:49:40 +00:00

Fix passing arguments to Utils.ts (#137)

This commit is contained in:
Adrian Calinescu
2020-05-18 20:15:22 +03:00
committed by GitHub
parent d9617df5ed
commit 3cf49c5d1c
2 changed files with 3 additions and 4 deletions

View File

@@ -173,7 +173,7 @@ async function downloadVideo(videoUrls: string[], outputDirectories: string[], s
console.log(colors.yellow(`\nDownloading Video: ${video.title}\n`));
video.title = makeUniqueTitle(sanitize(video.title) + ' - ' + video.date, outputDirectories[j]);
video.title = makeUniqueTitle(sanitize(video.title) + ' - ' + video.date, outputDirectories[j], argv.skip, argv.format);
// Very experimental inline thumbnail rendering
if (!argv.noExperiments)