This commit is contained in:
Joakim Hellsén 2023-01-23 19:15:27 +01:00
commit b056a5a7bb
No known key found for this signature in database
GPG key ID: C889E6DC5EDBB36D

View file

@ -73,8 +73,9 @@ def create_embed_webhook(webhook_url: str, entry: Entry) -> DiscordWebhook:
discord_embed.set_title(custom_embed.title)
if custom_embed.description:
discord_embed.set_description(custom_embed.description)
if custom_embed.color:
discord_embed.set_color(str(custom_embed.color))
if custom_embed.color and custom_embed.color.startswith("#"):
custom_embed.color = custom_embed.color[1:]
discord_embed.set_color(int(custom_embed.color, 16))
if custom_embed.author_name and not custom_embed.author_url and not custom_embed.author_icon_url:
discord_embed.set_author(name=custom_embed.author_name)
if custom_embed.author_name and custom_embed.author_url and not custom_embed.author_icon_url: