mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-23 03:06:53 -04:00
[JSON] Fix incorrect embed color output
This commit is contained in:
parent
eda5b21684
commit
0763a99765
2 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,4 @@
|
|||
using System.Drawing;
|
||||
using System.IO;
|
||||
using System.IO;
|
||||
using System.Text.Json;
|
||||
using System.Threading.Tasks;
|
||||
using DiscordChatExporter.Domain.Discord.Models;
|
||||
|
@ -116,7 +115,7 @@ namespace DiscordChatExporter.Domain.Exporting.Writers
|
|||
_writer.WriteString("description", FormatMarkdown(embed.Description));
|
||||
|
||||
if (embed.Color != null)
|
||||
_writer.WriteString("color", ColorTranslator.ToHtml(embed.Color.Value));
|
||||
_writer.WriteString("color", embed.Color.Value.ToHex());
|
||||
|
||||
if (embed.Author != null)
|
||||
await WriteEmbedAuthorAsync(embed.Author);
|
||||
|
|
|
@ -9,5 +9,7 @@ namespace DiscordChatExporter.Domain.Internal.Extensions
|
|||
public static Color ResetAlpha(this Color color) => color.WithAlpha(255);
|
||||
|
||||
public static int ToRgb(this Color color) => color.ToArgb() & 0xffffff;
|
||||
|
||||
public static string ToHex(this Color color) => $"#{color.R:X2}{color.G:X2}{color.B:X2}";
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue