fix for post.tags = Nil

This commit is contained in:
⧉ infominer 2023-04-05 05:08:48 +05:30
parent c199a4872f
commit 30b628d17d

View File

@ -35,18 +35,14 @@
{% if company.parent %}{% assign tags = company.parent | push: post.name %}{% endif %}
{% if company.related != Nil %}
{% if company.related contains ';'%}
{% assign related = company.related |split: ';' | push: post.name %}
{% else %}
{% if tags != Nil %}
{% assign tags = tags | push: company.related %}
{% else %}
{% assign tags = company.related %}
{%endif%}
{% endif %}
{% assign tags = company.related |split: ';' | push: post.name %}
{%else %}
{% assign tags = company.related %}
{%endif%}
{% endif %}
{% if tags != Nil %}
{% assign sorted_tags = tags | concat: post.tags | uniq | compact | sort %}
{% else %}
{% elsif post.tags !=Nil %}
{% assign sorted_tags = post.tags | push: post.name | uniq | compact | sort_natural %}
{%endif%}
{% endif %}