🐛 fix(template): ensure correct boolean comparison for feed generation

This commit is contained in:
bajacc 2025-06-01 17:52:03 +02:00
parent 979f347fb0
commit f257e82754
4 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,7 @@
{#- Feed icon -#}
{%- set feed_url = feed_utils::get_feed_url() -%}
{%- set should_show_feed = feed_utils::should_show_footer_feed_icon() -%}
{%- set should_show_feed = feed_utils::should_show_footer_feed_icon() == "true" -%}
{%- set should_show_footer_icons = should_show_feed or config.extra.socials or config.extra.email -%}