Фикс попытки подгрузки пустых логотипов

This commit is contained in:
2024-09-25 08:04:49 +08:00
parent 2f0186e49f
commit ab23f8796e

View File

@@ -86,7 +86,7 @@
<td class="p-1">
{% if (channel.logo.base64) %}
<img class="tvg-logo" src="{{ channel.logo.base64 }}" />
{% else %}
{% elseif (channel.attributes['tvg-logo']) %}
<img loading="lazy" class="tvg-logo" src="{{ base_url('logo?url=' ~ channel.attributes['tvg-logo']) }}" />
{% endif %}
</td>