diff --git a/app/main/views/feedback.py b/app/main/views/feedback.py index 05b9f6fe7..6a243a6bd 100644 --- a/app/main/views/feedback.py +++ b/app/main/views/feedback.py @@ -137,7 +137,7 @@ def thanks(): 'views/support/thanks.html', urgent=convert_to_boolean(request.args.get('urgent')), anonymous=convert_to_boolean(request.args.get('anonymous')), - logged_in=(current_user and current_user.is_authenticated), + logged_in=current_user.is_authenticated, )