From 62f4b7bedda21c9d11bbb065aa140adb468432fd Mon Sep 17 00:00:00 2001 From: Benno Lang Date: Thu, 23 Jan 2025 13:51:11 +1030 Subject: [PATCH] Skip podcasts not set for auto-download unless they are requested by a filter --- process | 2 ++ 1 file changed, 2 insertions(+) diff --git a/process b/process index c8b3286..16a2bca 100755 --- a/process +++ b/process @@ -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: