Browse Source

Fix embeds in execute, return message object when wait=True

pull/8/head
Andrei 9 years ago
parent
commit
e2ced98337
  1. 5
      disco/api/client.py
  2. 2
      disco/types/webhook.py

5
disco/api/client.py

@ -239,7 +239,10 @@ class APIClient(LoggingClass):
self.http(Routes.WEBHOOKS_TOKEN_DLEETE, dict(webhook=webhook, token=token))
def webhooks_token_execute(self, webhook, token, data, wait=False):
self.http(
obj = self.http(
Routes.WEBHOOKS_TOKEN_EXECUTE,
dict(webhook=webhook, token=token),
json=optional(**data), params={'wait': int(wait)})
if wait:
return Message.create(self.client, obj.json())

2
disco/types/webhook.py

@ -32,7 +32,7 @@ class Webhook(SlottedModel):
else:
return self.client.api.webhooks_modify(self.id, name, avatar)
def execute(self, content=None, username=None, avatar_url=None, tts=False, file=None, embeds=None, wait=False):
def execute(self, content=None, username=None, avatar_url=None, tts=False, file=None, embeds=[], wait=False):
return self.client.api.webhooks_token_execute(self.id, self.token, {
'content': content,
'username': username,

Loading…
Cancel
Save