From 296ffdabed272a4b72bc7eaf87a1f028289fb644 Mon Sep 17 00:00:00 2001 From: bashrc Date: Mon, 13 Apr 2026 11:57:15 +0100 Subject: [PATCH] lower --- newswire.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newswire.py b/newswire.py index 3ff607293..0f2e3a7ea 100644 --- a/newswire.py +++ b/newswire.py @@ -559,7 +559,7 @@ def _valid_podcast_entry(base_dir: str, key: str, entry: {}) -> bool: print('WARN: podcast protocol is not a string ' + str(entry)) return False - if entry['protocol'].tolower() != 'activitypub': + if entry['protocol'].lower() != 'activitypub': return False if entry.get('uri'): if not isinstance(entry['uri'], str):