mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-01 17:44:52 +02:00
Allow . in path; resolves #199
This commit is contained in:
parent
a35e24bc0e
commit
f61d442989
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