From c0bee8fd3cbb775d8beab2172c28ed7594196f59 Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 25 Jun 2025 00:42:34 -0700 Subject: [PATCH] fix: URL type, 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 a9c0148..3de2056 100644 --- a/song_of_the_day/Program.cs +++ b/song_of_the_day/Program.cs @@ -152,7 +152,7 @@ pickOfTheDayTimer.OnOccurence += async (s, ea) => await signalIntegration.SendMessageToGroupAsync($"Today's chosen person to share a song is: **{userName}**"); await signalIntegration.SendMessageToUserAsync($"Congratulations, you have been chosen to share a song today!", signalId); await signalIntegration.SendMessageToUserAsync($"Today's (optional) suggestion helper to help you pick a song is:\n\n**{suggestion.Title}**\n\n*{suggestion.Description}*", signalId); - await signalIntegration.SendMessageToUserAsync($"Please navigate to https://sord.disi.dev/SongSubmission/{newSongSuggestion.Id} to submit your choice!", luckyUser.SignalMemberId); + await signalIntegration.SendMessageToUserAsync($"Please navigate to https://sotd.disi.dev/SongSubmission/{newSongSuggestion.Id} to submit your choice!", luckyUser.SignalMemberId); } await dci.DisposeAsync(); };