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 %}