From 101df9525183fd34492114a6c352ba2c7aa4b5f5 Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Tue, 27 Sep 2022 17:03:00 -0700 Subject: [PATCH] [BACKEND] Remove `break_on_reject` default on youtube chanel (#244) --- src/ytdl_sub/downloaders/youtube/channel.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ytdl_sub/downloaders/youtube/channel.py b/src/ytdl_sub/downloaders/youtube/channel.py index 7cce1e50..4b52667a 100644 --- a/src/ytdl_sub/downloaders/youtube/channel.py +++ b/src/ytdl_sub/downloaders/youtube/channel.py @@ -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, }, )