Completed deprecation of streamingOnly mode for subscriptions

This commit is contained in:
Isaac Abadi
2022-06-24 17:29:06 -04:00
parent fecefde3ad
commit 573cca0b2f
8 changed files with 2 additions and 47 deletions

View File

@@ -389,11 +389,6 @@ async function generateArgsForSubscription(sub, user_uid, redownload = false, de
downloadConfig.push('--download-archive', archive_path);
}
// if streaming only mode, just get the list of videos
if (sub.streamingOnly) {
downloadConfig = ['-f', 'best', '--dump-json'];
}
if (sub.timerange && !redownload) {
downloadConfig.push('--dateafter', sub.timerange);
}