|
|
@ -1005,7 +1005,7 @@ class SyncWebhook(BaseWebhook): |
|
|
|
if thread_name is not MISSING and thread is not MISSING: |
|
|
|
raise TypeError('Cannot mix thread_name and thread keyword arguments.') |
|
|
|
|
|
|
|
params = handle_message_parameters( |
|
|
|
with handle_message_parameters( |
|
|
|
content=content, |
|
|
|
username=username, |
|
|
|
avatar_url=avatar_url, |
|
|
@ -1018,7 +1018,7 @@ class SyncWebhook(BaseWebhook): |
|
|
|
allowed_mentions=allowed_mentions, |
|
|
|
previous_allowed_mentions=previous_mentions, |
|
|
|
flags=flags, |
|
|
|
) |
|
|
|
) as params: |
|
|
|
adapter: WebhookAdapter = _get_webhook_adapter() |
|
|
|
thread_id: Optional[int] = None |
|
|
|
if thread is not MISSING: |
|
|
@ -1034,6 +1034,7 @@ class SyncWebhook(BaseWebhook): |
|
|
|
thread_id=thread_id, |
|
|
|
wait=wait, |
|
|
|
) |
|
|
|
|
|
|
|
if wait: |
|
|
|
return self._create_message(data, thread=thread) |
|
|
|
|
|
|
@ -1142,15 +1143,14 @@ class SyncWebhook(BaseWebhook): |
|
|
|
raise ValueError('This webhook does not have a token associated with it') |
|
|
|
|
|
|
|
previous_mentions: Optional[AllowedMentions] = getattr(self._state, 'allowed_mentions', None) |
|
|
|
params = handle_message_parameters( |
|
|
|
with handle_message_parameters( |
|
|
|
content=content, |
|
|
|
attachments=attachments, |
|
|
|
embed=embed, |
|
|
|
embeds=embeds, |
|
|
|
allowed_mentions=allowed_mentions, |
|
|
|
previous_allowed_mentions=previous_mentions, |
|
|
|
) |
|
|
|
|
|
|
|
) as params: |
|
|
|
thread_id: Optional[int] = None |
|
|
|
if thread is not MISSING: |
|
|
|
thread_id = thread.id |
|
|
|