Skip to content

Commit 436674e

Browse files
authored
Merge pull request #33 from gabriel-indik/main
File key regex case insensitive
2 parents b0adcdc + 7ee944f commit 436674e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const constants = {
4646
const log = new Logger('utils.ts')
4747

4848
export const regexp = {
49-
FILE_KEY: /^(\/[a-z0-9\+\-\_\.]+)+$/,
49+
FILE_KEY: /^(\/[a-z0-9\+\-\_\.]+)+$/i,
5050
CONSECUTIVE_DOTS: /\.\./
5151
};
5252

0 commit comments

Comments
 (0)