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

This commit is contained in:
voussoir 2020-11-09 16:48:17 -08:00
parent b7ce46bef2
commit 927b5a559e

View file

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