mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Fix ConsoleWindow regex handling (#1674)
This commit is contained in:
parent
ac59f73b59
commit
3909fb13fa
1 changed files with 1 additions and 2 deletions
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue