proxy workaround

This commit is contained in:
Karl 2025-07-18 16:31:39 +01:00
parent 898d737324
commit b5fcc31cf4

2
app.py
View File

@ -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: