Cancel parenthesis in ExtractZip regex (#4968)
Some checks failed
CI (Debug) / build (push) Has been cancelled
CI (Release) / build (push) Has been cancelled
CI (Release) / release (push) Has been cancelled
CI (Release) / release-test (push) Has been cancelled

This commit is contained in:
Matt 2025-03-29 09:00:02 +00:00 committed by GitHub
parent 55273e12f2
commit dbdd0e37d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1525,7 +1525,7 @@ namespace Bloxstrap
var regexList = new List<string>();
foreach (string file in files)
regexList.Add("^" + file.Replace("\\", "\\\\") + "$");
regexList.Add("^" + file.Replace("\\", "\\\\").Replace("(", "\\(").Replace(")", "\\)") + "$");
fileFilter = String.Join(';', regexList);
}