From ea34a0057156c0cf5b46c80d11a27ba954a90044 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Fri, 23 Sep 2022 15:12:20 +0200 Subject: [PATCH] fix collapsing happening in main notif page --- files/templates/comments.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/templates/comments.html b/files/templates/comments.html index 199cc8f14..34cba2166 100644 --- a/files/templates/comments.html +++ b/files/templates/comments.html @@ -553,7 +553,7 @@ {% if render_replies %}
- {% if request.path.startswith('/notifications') and replies|length > 8 %} + {% if request.path.startswith('/notifications/') and replies|length > 8 %} {% for reply in replies %} {{single_comment(reply, level=level+1, collapse=(not reply.unread and loop.index != replies|length))}} {% endfor %}