mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-31 06:59:33 +02:00
Allow . in path; resolves #199
This commit is contained in:
parent
0aecfb359b
commit
7345f4a2af
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue