summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSamantaz Fox <coding@samantaz.fr>2022-05-01 13:40:02 +0200
committerGitHub <noreply@github.com>2022-05-01 13:40:02 +0200
commit96afc1a45d1e8df0f00d6c4cde9e9744cc9f1fcd (patch)
tree6ec387935f4a418acd82245847fc57f1628083dc /src
parent595c3fb833c5744fc83f0936a11cb8c16393190e (diff)
downloadinvidious-96afc1a45d1e8df0f00d6c4cde9e9744cc9f1fcd.tar.gz
invidious-96afc1a45d1e8df0f00d6c4cde9e9744cc9f1fcd.tar.bz2
invidious-96afc1a45d1e8df0f00d6c4cde9e9744cc9f1fcd.zip
Revert html escaping of backtrace
Diffstat (limited to 'src')
-rw-r--r--src/invidious/helpers/errors.cr2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/invidious/helpers/errors.cr b/src/invidious/helpers/errors.cr
index 2eab6263..b80dcdaf 100644
--- a/src/invidious/helpers/errors.cr
+++ b/src/invidious/helpers/errors.cr
@@ -46,7 +46,7 @@ def error_template_helper(env : HTTP::Server::Context, status_code : Int32, exce
TEXT
- issue_template += github_details("Backtrace", HTML.escape(exception.inspect_with_backtrace))
+ issue_template += github_details("Backtrace", exception.inspect_with_backtrace)
# URLs for the error message below
url_faq = "https://github.com/iv-org/documentation/blob/master/docs/faq.md"