Compare commits

..

2 Commits

Author SHA1 Message Date
75f210df5f Bump version: 1.3.49 → 1.3.50
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m36s
2025-07-18 16:31:42 +01:00
b5fcc31cf4 proxy workaround 2025-07-18 16:31:39 +01:00
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "1.3.49"
current_version = "1.3.50"
commit = true
tag = true
tag_name = "{new_version}"

View File

@ -1 +1 @@
1.3.49
1.3.50

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: