Fix post ID parsing

This commit is contained in:
spikecodes 2021-02-09 12:08:38 -08:00
parent e731cfbac4
commit 6feb347c27
No known key found for this signature in database
GPG key ID: 004CECFF9B463BCB
2 changed files with 9 additions and 9 deletions

View file

@ -36,7 +36,7 @@
{% macro render_flair(flair) -%}
{% for flair_part in flair %}
{% if flair_part.flair_part_type == "emoji" %}<span class="emoji" style="background-image:url('{{ flair_part.value }}');"></span>
{% else if flair_part.flair_part_type == "text" %}<span>{{ flair_part.value }}</span>{% endif %}
{% else if flair_part.flair_part_type == "text" && !flair_part.value.is_empty() %}<span>{{ flair_part.value }}</span>{% endif %}
{% endfor %}
{%- endmacro %}