Compare commits

..

No commits in common. "75f210df5fb25702bbdfa3e6154f4500370d0748" and "898d737324fb33c777831c936198fd35819413ca" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View File

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

View File

@ -1 +1 @@
1.3.50
1.3.49

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={}
json=request.get_json()
)
return Response(response.content, status=response.status_code, mimetype=response.headers['Content-Type'])
except requests.exceptions.RequestException as e: