From 691f3648385cd1a58a8780d564212e39c6d8ccd6 Mon Sep 17 00:00:00 2001 From: 13xforever Date: Fri, 23 Jan 2026 12:45:34 +0500 Subject: [PATCH] completely skip filters for old messages --- CompatBot/Database/Providers/ContentFilter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CompatBot/Database/Providers/ContentFilter.cs b/CompatBot/Database/Providers/ContentFilter.cs index 2751326a..cf2ebd61 100644 --- a/CompatBot/Database/Providers/ContentFilter.cs +++ b/CompatBot/Database/Providers/ContentFilter.cs @@ -119,7 +119,7 @@ internal static class ContentFilter var suppressActions = (FilterAction)0; if (message.Timestamp.UtcDateTime.AddDays(1) < DateTime.UtcNow) - suppressActions = FilterAction.SendMessage | FilterAction.ShowExplain; + return true; //suppressActions = FilterAction.SendMessage | FilterAction.ShowExplain; #if !DEBUG if (await message.Author.IsWhitelistedAsync(client, message.Channel.Guild).ConfigureAwait(false))