Browse Source
Allow empty strings to be in Embed.to_dict
pull/9141/head
Soheab_
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
4 deletions
-
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 |
|
|
|