diff --git a/PluralKit.Bot/Services/ErrorMessageService.cs b/PluralKit.Bot/Services/ErrorMessageService.cs index b84b23de..42e1d4fd 100644 --- a/PluralKit.Bot/Services/ErrorMessageService.cs +++ b/PluralKit.Bot/Services/ErrorMessageService.cs @@ -76,7 +76,7 @@ namespace PluralKit.Bot { // if (_lastErrorInChannel.TryGetValue(channelId, out var lastErrorTime)) - var startupTime = Instant.FromDateTimeUtc(Process.GetCurrentProcess().StartTime); + var startupTime = Instant.FromDateTimeUtc(Process.GetCurrentProcess().StartTime.ToUniversalTime()); // don't send errors during startup // mostly because Npgsql throws a bunch of errors when opening connections sometimes??? if ((now - startupTime) < IntervalFromStartup)