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) =>