Fixed issue where one-off playlist downlaods would only include the first video

This commit is contained in:
Isaac Abadi
2022-06-30 01:29:18 -04:00
parent c9359f172e
commit 768798c6b3
4 changed files with 12 additions and 7 deletions

View File

@@ -407,7 +407,7 @@ async function generateArgsForSubscription(sub, user_uid, redownload = false, de
const default_downloader = utils.getCurrentDownloader() || config_api.getConfigItem('ytdl_default_downloader');
if (default_downloader === 'yt-dlp') {
downloadConfig.push('--no-clean-infojson');
downloadConfig.push('--no-clean-info-json');
}
downloadConfig = utils.filterArgs(downloadConfig, ['--write-comments']);