Fix: Switches data to content to upload raw bytes/text content (#9293)

This commit is contained in:
Trenton H 2025-03-04 10:56:28 -08:00 committed by GitHub
parent d82555e644
commit 817aad7c8b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -632,7 +632,7 @@ def send_webhook(
else: else:
httpx.post( httpx.post(
url, url,
data=data, content=data,
files=files, files=files,
headers=headers, headers=headers,
).raise_for_status() ).raise_for_status()

View File

@ -2603,7 +2603,7 @@ class TestWorkflows(
mock_post.assert_called_once_with( mock_post.assert_called_once_with(
"http://paperless-ngx.com", "http://paperless-ngx.com",
data="Test message", content="Test message",
headers={}, headers={},
files=None, files=None,
) )