From a09e27281e70302f29f767b09289bf0d3b8ae360 Mon Sep 17 00:00:00 2001 From: Simon Diesenreiter Date: Tue, 15 Apr 2025 15:33:02 +0200 Subject: [PATCH] fix: fix new user saving refs NOISSUE --- song_of_the_day/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/song_of_the_day/Program.cs b/song_of_the_day/Program.cs index bef9c56..1a287a8 100644 --- a/song_of_the_day/Program.cs +++ b/song_of_the_day/Program.cs @@ -33,6 +33,7 @@ userCheckTimer.OnOccurence += async (s, ea) => NickName = string.Empty, IsIntroduced = false }; + dci.Users.Add(newUser); needsSaving = true; } }