Lower case appears to be the standard

main
Bob Mottram 2022-01-14 13:15:43 +00:00
parent c395261523
commit 75a21345cc
1 changed files with 2 additions and 2 deletions

View File

@ -229,8 +229,8 @@ def _add_newswire_dict_entry(base_dir: str, domain: str,
# Include tags from podcast categories # Include tags from podcast categories
if podcast_properties: if podcast_properties:
if podcast_properties.get('explicit'): if podcast_properties.get('explicit'):
if '#NSFW' not in post_tags: if '#nsfw' not in post_tags:
post_tags.append('#NSFW') post_tags.append('#nsfw')
post_tags += podcast_properties['categories'] post_tags += podcast_properties['categories']