mirror of https://gitlab.com/bashrc2/epicyon
Add comments
parent
e21f34aab6
commit
55fc047686
3
posts.py
3
posts.py
|
@ -1439,9 +1439,12 @@ def _create_post_base(base_dir: str,
|
||||||
for audio_tag, audio_value in music_metadata.items():
|
for audio_tag, audio_value in music_metadata.items():
|
||||||
if audio_tag == 'title' or audio_tag == 'track':
|
if audio_tag == 'title' or audio_tag == 'track':
|
||||||
continue
|
continue
|
||||||
|
# capitalize and remove any spaces
|
||||||
audio_value = audio_value.title().replace(' ', '')
|
audio_value = audio_value.title().replace(' ', '')
|
||||||
|
# check that the tag is valid
|
||||||
if valid_hash_tag(audio_value) and \
|
if valid_hash_tag(audio_value) and \
|
||||||
'#' + audio_value not in content:
|
'#' + audio_value not in content:
|
||||||
|
# check that it hasn't been blocked
|
||||||
if not is_blocked_hashtag(base_dir, audio_value):
|
if not is_blocked_hashtag(base_dir, audio_value):
|
||||||
content += ' #' + audio_value
|
content += ' #' + audio_value
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue