diff --git a/discord/embeds.py b/discord/embeds.py index 6a79fef71..7c5a13060 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -742,16 +742,16 @@ class Embed: result['timestamp'] = timestamp.replace(tzinfo=datetime.timezone.utc).isoformat() # add in the non raw attribute ones - if self.type: + if self.type is not None: result['type'] = self.type - if self.description: + if self.description is not None: result['description'] = self.description - if self.url: + if self.url is not None: result['url'] = self.url - if self.title: + if self.title is not None: result['title'] = self.title return result # type: ignore # This payload is equivalent to the EmbedData type