From c779e34fa0d45316d3490ec9c8a50d39baff2943 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sun, 8 May 2022 00:11:52 -0400 Subject: [PATCH] Use explicit UTF-8 encoding in SyncWebhook --- discord/webhook/sync.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/discord/webhook/sync.py b/discord/webhook/sync.py index 87b8092ef..71b634b9a 100644 --- a/discord/webhook/sync.py +++ b/discord/webhook/sync.py @@ -123,7 +123,7 @@ class WebhookAdapter: ) -> Any: headers: Dict[str, str] = {} files = files or [] - to_send: Optional[Union[str, Dict[str, Any]]] = None + to_send: Optional[Union[str, bytes, Dict[str, Any]]] = None bucket = (route.webhook_id, route.webhook_token) try: @@ -132,8 +132,8 @@ class WebhookAdapter: self._locks[bucket] = lock = threading.Lock() if payload is not None: - headers['Content-Type'] = 'application/json' - to_send = utils._to_json(payload) + headers['Content-Type'] = 'application/json; charset=utf-8' + to_send = utils._to_json(payload).encode('utf-8') if auth_token is not None: headers['Authorization'] = f'Bot {auth_token}'