From 233f20a24a56798133ff3af3ddfe7f6e5ffe38f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Untersch=C3=BCtz?= Date: Sat, 21 Mar 2026 21:31:06 +0100 Subject: [PATCH] fix game --- cmd/client/web/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/client/web/index.html b/cmd/client/web/index.html index c25e806..930e7bc 100644 --- a/cmd/client/web/index.html +++ b/cmd/client/web/index.html @@ -414,9 +414,9 @@ function showSprueche() { const txt = q.text.replace(/&/g,'&').replace(//g,'>'); const ctx = q.ctx ? q.ctx.replace(/&/g,'&').replace(//g,'>') : ''; const auth = q.author.replace(/&/g,'&'); - return '
' + return '
' + '

' + txt + '

' - + (ctx ? '

' + ctx + '

' : '') + + (ctx ? '

' + ctx + '

' : '') + '

— ' + auth + '

' + '
'; }).join('');