mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-04 02:01:28 -07:00
Cancel parenthesis in ExtractZip
regex (#4968)
This commit is contained in:
parent
55273e12f2
commit
dbdd0e37d6
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user