From 6294b1d4969cfb0284ab0e6c26ce84360af47c5e Mon Sep 17 00:00:00 2001 From: cake Date: Tue, 16 Dec 2025 07:11:35 +0100 Subject: [PATCH] Reduced report chat messages to 1 min of polling --- LightlessSyncServer/LightlessSyncServices/Discord/DiscordBot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LightlessSyncServer/LightlessSyncServices/Discord/DiscordBot.cs b/LightlessSyncServer/LightlessSyncServices/Discord/DiscordBot.cs index de69b95..4120351 100644 --- a/LightlessSyncServer/LightlessSyncServices/Discord/DiscordBot.cs +++ b/LightlessSyncServer/LightlessSyncServices/Discord/DiscordBot.cs @@ -162,7 +162,7 @@ internal class DiscordBot : IHostedService try { - await Task.Delay(TimeSpan.FromMinutes(10), token).ConfigureAwait(false); + await Task.Delay(TimeSpan.FromMinutes(1), token).ConfigureAwait(false); } catch (OperationCanceledException) {