From fb71a56030f63876e1c5b23992844b8f57b378c6 Mon Sep 17 00:00:00 2001 From: 2000-Trek Date: Fri, 23 Jun 2023 18:47:12 +0200 Subject: [PATCH] Last fix for html escape --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index cd84347..8e3228c 100644 --- a/main.py +++ b/main.py @@ -123,7 +123,7 @@ def remove_user(): db_log.info(f"Deleted user {user_id}") conn.commit() socketio.emit("update", "update") - return f'

Deleted user {user_name}

return to the tags and user list' + return f'

Deleted user {escape(user_name)}

return to the tags and user list' else: return "Error: 043"