From 93ab0bcfa34472f10be54e72e69203f1dd9f1002 Mon Sep 17 00:00:00 2001
From: Michael Tremer
Date: Wed, 13 Dec 2023 16:18:20 +0000
Subject: [PATCH] help: Fix rendering page if users are not logged in
Signed-off-by: Michael Tremer
---
src/templates/static/help.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/templates/static/help.html b/src/templates/static/help.html
index aa794720..05c70e64 100644
--- a/src/templates/static/help.html
+++ b/src/templates/static/help.html
@@ -141,7 +141,7 @@
- {% if current_user or not current_user.consents_to_promotional_emails %}
+ {% if not current_user or not current_user.consents_to_promotional_emails %}