mirror of
https://github.com/fosrl/pangolin.git
synced 2025-12-14 12:08:11 +00:00
Allow . in path; resolves #199
This commit is contained in:
@@ -35,7 +35,7 @@ export function isValidUrlGlobPattern(pattern: string): boolean {
|
||||
}
|
||||
|
||||
// Check for invalid characters
|
||||
if (!/^[a-zA-Z0-9_*-]*$/.test(segment)) {
|
||||
if (!/^[a-zA-Z0-9_.*-]*$/.test(segment)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user