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'