Closed DiFFoZ closed 1 year ago
var testMessage = new WebhookMessage() .WithUsername("Test Bot") .PassEmbed() .WithTimestamp(DateTime.Now) .Finalize() await DiscordWebhookService.PostMessageAsync(WebhookURL, testMessage);
In discord it shows: Tomorrow at 4:32 AM Expected: Today at 8:32 PM
Tomorrow at 4:32 AM
Today at 8:32 PM
Time on the server is GMT +1
The fix will be included in the next release. For now, you could use DateTime.Now.ToLocalTime()
DateTime.Now.ToLocalTime()
should be fixed in #8
In discord it shows:
Tomorrow at 4:32 AM
Expected:Today at 8:32 PM
Time on the server is GMT +1