[BACKEND] Remove break_on_reject default on youtube chanel

This commit is contained in:
Jesse Bannon 2022-09-25 10:40:02 -07:00
parent 3d0ade1141
commit 2c0523630b

View file

@ -111,13 +111,11 @@ class YoutubeChannelDownloader(YoutubeDownloader[YoutubeChannelDownloaderOptions
ytdl_options:
ignoreerrors: True # ignore errors like hidden videos, age restriction, etc
break_on_existing: True # stop downloads (newest to oldest) if a video is already downloaded
break_on_reject: True # stops downloads if the video's upload date is out of the specified 'before'/'after' range
"""
return dict(
super().ytdl_option_defaults(),
**{
"break_on_existing": True,
"break_on_reject": True,
},
)