From 939ae74e9511aecac98f6ec51f03148307b39397 Mon Sep 17 00:00:00 2001 From: Simon Diesenreiter Date: Sun, 20 Jul 2025 17:44:52 +0200 Subject: [PATCH] fix: improved Spotify auth check flow, 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 f6af700..06bb377 100644 --- a/song_of_the_day/Program.cs +++ b/song_of_the_day/Program.cs @@ -257,7 +257,6 @@ messageSyncTimer.OnOccurence += async (s, ea) => // only start interaction timers in production builds // for local/development testing we want those disabled - likePlaylistCheckTimer.Start(); if (!app.Environment.IsDevelopment()) { logger.LogTrace("Starting timer for scheduled processes."); @@ -265,6 +264,7 @@ if (!app.Environment.IsDevelopment()) userIntroTimer.Start(); pickOfTheDayTimer.Start(); ldapAssociationTimer.Start(); + likePlaylistCheckTimer.Start(); } else {