From 2a83bf207ac801c66d9c5c1d317fd4112dd8a410 Mon Sep 17 00:00:00 2001 From: Aevann Date: Mon, 27 Feb 2023 17:43:56 +0200 Subject: [PATCH] fix prev commit --- files/templates/userpage/banner.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/templates/userpage/banner.html b/files/templates/userpage/banner.html index b611f1bb1..4815fb5f1 100644 --- a/files/templates/userpage/banner.html +++ b/files/templates/userpage/banner.html @@ -90,7 +90,7 @@ {% if FEATURES['USERS_PROFILE_BODYTEXT'] -%} - {% if u.bio_html and not (not u.shadowbanned or (v and v.id == u.id)) %} + {% if u.bio_html and (not u.shadowbanned or (v and v.id == u.id)) %}
{{u.bio_html | safe}}
{% else %}

No bio...

@@ -351,7 +351,7 @@ {% if FEATURES['USERS_PROFILE_BODYTEXT'] -%} - {% if u.bio_html and not (not u.shadowbanned or (v and v.id == u.id)) %} + {% if u.bio_html and (not u.shadowbanned or (v and v.id == u.id)) %}
{{u.bio_html | safe}}
{% endif %}