Skip to content

Commit

Permalink
Merge pull request #70 from nowsprinting/fix/regex_ignore_message
Browse files Browse the repository at this point in the history
Fix expression to work with Unity 2020 or lower
  • Loading branch information
get-me-power authored Sep 24, 2024
2 parents e3ef73f + 89a2e25 commit 6ebf48c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Runtime/Utilities/LogMessageHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ private bool IsIgnoreMessage(string logString, string stackTrace, LogType type,

private static List<Regex> CreateIgnoreMessageRegexes(AutopilotSettings settings)
{
List<Regex> regexs = new();
var regexs = new List<Regex>();
foreach (var message in settings.ignoreMessages)
{
Regex pattern;
Expand Down

0 comments on commit 6ebf48c

Please sign in to comment.