Add parameter rss_assisted in case you want to turn it off.

master
voussoir 2020-11-09 16:48:17 -08:00
parent b7ce46bef2
commit 927b5a559e
1 changed files with 2 additions and 2 deletions

View File

@ -204,8 +204,8 @@ class YCDLDBChannelMixin:
return excs
def refresh_all_channels(self, *, force=False, skip_failures=False, commit=True):
if not force:
def refresh_all_channels(self, *, force=False, rss_assisted=True, skip_failures=False, commit=True):
if rss_assisted and not force:
return self._rss_assisted_refresh(skip_failures=skip_failures, commit=commit)
excs = []