We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ae0f03 commit 5f18e96Copy full SHA for 5f18e96
1 file changed
Main.cs
@@ -55,7 +55,7 @@ private static bool _IsValidPath(string path)
55
{
56
int c = path[i];
57
58
- if (c == '<' || c == '>' || c == '|' || c == '*' || c == '?' || c < 32 || c == '/')
+ if (c == '<' || c == '>' || c == '|' || c == '*' || c == '?' || c < 32)
59
return false;
60
}
61
@@ -324,4 +324,4 @@ public List<Result> Query(Query query)
324
}).ToList();
325
return GetMatchedResults(allResults, query.Search);
326
327
-}
+}
0 commit comments