Remove playlistend for individual video downloads - it should only be used during playlist extraction
This commit is contained in:
parent
eeb2fbf1dd
commit
0633af7ca9
1 changed files with 0 additions and 1 deletions
|
|
@ -385,7 +385,6 @@ class DownloadQueue:
|
||||||
ytdl_options = dict(self.config.YTDL_OPTIONS)
|
ytdl_options = dict(self.config.YTDL_OPTIONS)
|
||||||
if playlist_item_limit > 0:
|
if playlist_item_limit > 0:
|
||||||
log.info(f'playlist limit is set. Processing only first {playlist_item_limit} entries')
|
log.info(f'playlist limit is set. Processing only first {playlist_item_limit} entries')
|
||||||
ytdl_options['playlistend'] = playlist_item_limit
|
|
||||||
if auto_start is True:
|
if auto_start is True:
|
||||||
download = Download(dldirectory, self.config.TEMP_DIR, output, output_chapter, quality, format, ytdl_options, dl)
|
download = Download(dldirectory, self.config.TEMP_DIR, output, output_chapter, quality, format, ytdl_options, dl)
|
||||||
self.queue.put(download)
|
self.queue.put(download)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue