Skip podcasts not set for auto-download unless they are requested by a filter

This commit is contained in:
Benno Lang 2025-01-23 13:51:11 +10:30
parent 005244e96d
commit 62f4b7bedd

View file

@ -11,6 +11,8 @@ options = args.read()
for podcast in config['podcasts']:
if options.filter and not options.filter in podcast['name'].lower():
continue
elif not options.filter and podcast['auto'] == False:
continue
files.addRef(podcast)
rss.fetch(podcast, options.loadFeed)
if options.downloadEpisodes: