diff --git a/TTSListening.cs b/TTSListening.cs index 66403d6..77f6218 100644 --- a/TTSListening.cs +++ b/TTSListening.cs @@ -55,6 +55,12 @@ namespace TwitchChatTTS return; } + if (DateTime.UtcNow - group.Timestamp > TimeSpan.FromSeconds(60)) + { + _logger.Debug("Ignored message due to being in queue for too long."); + continue; + } + FetchMasterAudio(group); } catch (COMException e)