diff --git a/disco/api/client.py b/disco/api/client.py index 254bb62..9f826f5 100644 --- a/disco/api/client.py +++ b/disco/api/client.py @@ -88,13 +88,15 @@ class APIClient(LoggingClass): r = self.http(Routes.CHANNELS_MESSAGES_GET, dict(channel=channel, message=message)) return Message.create(self.client, r.json()) - def channels_messages_create(self, channel, content, nonce=None, tts=False, attachment=None, embed=None): + def channels_messages_create(self, channel, content=None, nonce=None, tts=False, attachment=None, embed=None): payload = { - 'content': content, 'nonce': nonce, 'tts': tts, } + if content: + payload['content'] = content + if embed: payload['embed'] = embed.to_dict()