fix: Remove null coalescing on ToEmbedBuilder Color (#1333)
Very simple change, removes the null coalescing operator on the EmbedBuilder's Color property in ToEmbedBuilder.
This commit is contained in:
@@ -44,7 +44,7 @@ namespace Discord
|
|||||||
IconUrl = embed.Author?.IconUrl,
|
IconUrl = embed.Author?.IconUrl,
|
||||||
Url = embed.Author?.Url
|
Url = embed.Author?.Url
|
||||||
},
|
},
|
||||||
Color = embed.Color ?? Color.Default,
|
Color = embed.Color,
|
||||||
Description = embed.Description,
|
Description = embed.Description,
|
||||||
Footer = new EmbedFooterBuilder
|
Footer = new EmbedFooterBuilder
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user