Fix oversight in hide_filename

This commit is contained in:
RealAngeleno 2023-07-13 22:11:59 -07:00 committed by -
parent 8207b11024
commit 3447eb4e31

View File

@ -1,6 +1,6 @@
<a href=" <a href="
{% if post.file|extension == 'webm' or post.file|extension == 'mp4' %} {% if post.file|extension == 'webm' or post.file|extension == 'mp4' %}
{{ config.root }}player.php?v={% if shadow %}{{ config.uri_shadow_img }}{% else %}{{ config.uri_img }}{% endif %}{{ post.file }}&amp;t={{ post.filename|e('url') }}&amp;loop=1 {{ config.root }}player.php?v={% if shadow %}{{ config.uri_shadow_img }}{% else %}{{ config.uri_img }}{% endif %}{{ post.file }}&amp;t={% if config.show_filename %}{{ post.filename|e('url') }}{% else %}{{ post.file }}{% endif %}&amp;loop=1
{% else %} {% else %}
{% if shadow %}{{ config.uri_shadow_img }}{% else %}{{ config.uri_img }}{% endif %}{{ post.file }} {% if shadow %}{{ config.uri_shadow_img }}{% else %}{{ config.uri_img }}{% endif %}{{ post.file }}
{% endif %} {% endif %}