From d20537983e25554ad567788c9ed45569cb253aff Mon Sep 17 00:00:00 2001 From: haunter Date: Sun, 26 Apr 2026 12:24:10 +0300 Subject: [PATCH] MJ: fix typo --- routes/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/api.py b/routes/api.py index 989a838..1a95d2a 100644 --- a/routes/api.py +++ b/routes/api.py @@ -282,7 +282,7 @@ def serve_bot(): combined_code.append("})();") - response = make_response("\\n".join(combined_code)) + response = make_response("\n".join(combined_code)) response.headers['Content-Type'] = 'application/javascript' # Prevent caching so updates are instant response.headers['Cache-Control'] = 'no-cache, no-store, must-revalidate'