From 626afe487c8bcd575314c44ca6cd3bd47021211f Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Mon, 11 May 2026 17:04:08 +0100 Subject: [PATCH] Render newlines in error messages as
instead of literal \n Co-Authored-By: Claude Sonnet 4.6 --- templates/error.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/error.html b/templates/error.html index c1a5018..60246fb 100644 --- a/templates/error.html +++ b/templates/error.html @@ -8,7 +8,7 @@

Something went wrong

-

{{ message }}

+

{{ message | replace('\n', '
') | safe }}

Back to home