Skip to content

Commit

Permalink
enlarge charset allowed in object names (#904)
Browse files Browse the repository at this point in the history
  • Loading branch information
samanhappy committed Jan 17, 2023
1 parent 65f7024 commit 9bdd365
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/v/format.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ var (
"url": _url,
}

urlCharsRegexp = regexp.MustCompile(`^[A-Za-z0-9\-_\.~]{1,253}$`)
urlCharsRegexp = regexp.MustCompile(`^[\p{L}0-9\-_\.~]{1,253}$`)
)

func getFormatFunc(format string) (FormatFunc, bool) {
Expand Down

0 comments on commit 9bdd365

Please sign in to comment.