From b5fcc31cf4c4d4b85dbcea5f0791f7f706cfc82a Mon Sep 17 00:00:00 2001 From: Karl Date: Fri, 18 Jul 2025 16:31:39 +0100 Subject: [PATCH] proxy workaround --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 261c7a2..9e768d6 100644 --- a/app.py +++ b/app.py @@ -148,7 +148,7 @@ def send_test_notification(): response = requests.post( backend_url, auth=requests.auth.HTTPBasicAuth(username, password), - json=request.get_json() + json={} ) return Response(response.content, status=response.status_code, mimetype=response.headers['Content-Type']) except requests.exceptions.RequestException as e: