main
bashrc 2026-04-13 11:57:15 +01:00
parent 729ec9c965
commit 296ffdabed
1 changed files with 1 additions and 1 deletions

View File

@ -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):