From d3249445f3072c4d176c46462934d7f11109ae46 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 10 Jan 2023 15:58:37 -0500 Subject: [PATCH] Revert "Allow empty strings to be in Embed.to_dict" This reverts commit a72fc7416c8f17ee270a0f13ae160a60b9127630. Discord no longer allows this and the original rationale for allowing this was weak to begin with. --- discord/embeds.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/discord/embeds.py b/discord/embeds.py index 7c5a13060..6a79fef71 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 is not None: + if self.type: result['type'] = self.type - if self.description is not None: + if self.description: result['description'] = self.description - if self.url is not None: + if self.url: result['url'] = self.url - if self.title is not None: + if self.title: result['title'] = self.title return result # type: ignore # This payload is equivalent to the EmbedData type