cancel parenthesis in ExtractZip regex

This commit is contained in:
bluepilledgreat 2025-03-29 08:39:29 +00:00
parent 55273e12f2
commit 9aa56e6ff2

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);
}