[BACKEND] Remove break_on_reject default on youtube chanel (#244)
This commit is contained in:
parent
1486acb421
commit
101df95251
1 changed files with 0 additions and 2 deletions
|
|
@ -111,13 +111,11 @@ class YoutubeChannelDownloader(YoutubeDownloader[YoutubeChannelDownloaderOptions
|
||||||
ytdl_options:
|
ytdl_options:
|
||||||
ignoreerrors: True # ignore errors like hidden videos, age restriction, etc
|
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_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(
|
return dict(
|
||||||
super().ytdl_option_defaults(),
|
super().ytdl_option_defaults(),
|
||||||
**{
|
**{
|
||||||
"break_on_existing": True,
|
"break_on_existing": True,
|
||||||
"break_on_reject": True,
|
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue