Fix invalid types for some discord webhook values (#19515)

This commit is contained in:
DrSmugleaf
2023-08-24 22:59:43 -07:00
committed by GitHub
parent 0326badcb7
commit 4daabaae05
4 changed files with 8 additions and 8 deletions

View File

@@ -6,7 +6,7 @@ namespace Content.Server.Discord;
public struct WebhookUser
{
[JsonPropertyName("id")]
public ulong Id { get; set; }
public string Id { get; set; }
[JsonPropertyName("username")]
public string Username { get; set; }