Browse Source
Remove null coalescing on ToEmbedBuilder Color
Very simple change, removes the null coalescing operator on the EmbedBuilder's Color property in ToEmbedBuilder.
pull/1333/head
gab
GitHub
6 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/Discord.Net.Core/Extensions/EmbedBuilderExtensions.cs
|
|
@@ -44,7 +44,7 @@ namespace Discord |
|
|
|
IconUrl = embed.Author?.IconUrl, |
|
|
|
Url = embed.Author?.Url |
|
|
|
}, |
|
|
|
Color = embed.Color ?? Color.Default, |
|
|
|
Color = embed.Color, |
|
|
|
Description = embed.Description, |
|
|
|
Footer = new EmbedFooterBuilder |
|
|
|
{ |
|
|
|