From d4162427128a0863d6d9213ca5ab2dc0723ebd3e Mon Sep 17 00:00:00 2001 From: Simon Diesenreiter Date: Mon, 26 May 2025 09:23:25 +0200 Subject: [PATCH] fix: save DateTime as UTC, refs NOISSUE --- song_of_the_day/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/song_of_the_day/Program.cs b/song_of_the_day/Program.cs index 4230016..9fccbbe 100644 --- a/song_of_the_day/Program.cs +++ b/song_of_the_day/Program.cs @@ -131,7 +131,7 @@ pickOfTheDayTimer.OnOccurence += async (s, ea) => SuggestionHelper = suggestion, UserHasSubmitted = false, HasUsedSuggestion = false, - Date = DateTime.Today + Date = DateTime.Today.ToUniversalTime() }; if (luckyUser.SignalMemberId is string signalId) {