From a6321324f7bae3436f71db7715680fba74acf9fe Mon Sep 17 00:00:00 2001 From: Simon Diesenreiter Date: Sat, 24 May 2025 19:20:12 +0200 Subject: [PATCH] fix: fix build errors, refs NOISSUE --- song_of_the_day/Program.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/song_of_the_day/Program.cs b/song_of_the_day/Program.cs index b2573fa..81ffd7f 100644 --- a/song_of_the_day/Program.cs +++ b/song_of_the_day/Program.cs @@ -18,10 +18,6 @@ LdapIntegration.Instance = new LdapIntegration(AppConfiguration.Instance.LDAPCon var builder = WebApplication.CreateBuilder(args); -var rand = new Random(); -var num = rand.NextInt64(); -var mod = num % AppConfiguration.Instance.AverageDaysBetweenRequests; - Console.WriteLine("Setting up user check timer"); var userCheckTimer = new CronTimer("*/1 * * * *", "Europe/Vienna", includingSeconds: false); userCheckTimer.OnOccurence += async (s, ea) =>