From 3909fb13fad3e030a511a598f79b2d0677726df5 Mon Sep 17 00:00:00 2001 From: AzureGem Date: Tue, 20 Feb 2024 14:19:24 -0500 Subject: [PATCH] Fix ConsoleWindow regex handling (#1674) --- Dalamud/Interface/Internal/Windows/ConsoleWindow.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dalamud/Interface/Internal/Windows/ConsoleWindow.cs b/Dalamud/Interface/Internal/Windows/ConsoleWindow.cs index 63924365d..bf559c4d7 100644 --- a/Dalamud/Interface/Internal/Windows/ConsoleWindow.cs +++ b/Dalamud/Interface/Internal/Windows/ConsoleWindow.cs @@ -731,8 +731,6 @@ internal class ConsoleWindow : Window, IDisposable return false; } - this.regexError = false; - // else we couldn't find a filter for this entry, if we have any filters, we need to block this entry. return !this.pluginFilters.Any(); } @@ -741,6 +739,7 @@ internal class ConsoleWindow : Window, IDisposable { lock (this.renderLock) { + this.regexError = false; this.FilteredLogEntries = this.logText.Where(this.IsFilterApplicable).ToList(); } }