From 78237167e330422766669e835872bd34e41e49f6 Mon Sep 17 00:00:00 2001 From: Aevann Date: Thu, 12 Oct 2023 22:58:22 +0300 Subject: [PATCH] fix if condition logic --- files/templates/userpage/userpage.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/templates/userpage/userpage.html b/files/templates/userpage/userpage.html index fd9500a89..06fd3874b 100644 --- a/files/templates/userpage/userpage.html +++ b/files/templates/userpage/userpage.html @@ -27,7 +27,7 @@
{{u.username}}
{% endif %} -{% if (not (IS_FISTMAS() or IS_DKD()) or SITE_NAME == 'WPD') and can_see(v, u) %} +{% if can_see(v, u) and u.song %} {% endif %} {% endblock %}