forked from TrueCloudLab/rclone
compress: fix compressed name regexp
This commit is contained in:
parent
5d85e6bc9c
commit
efdee3a5fe
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ const (
|
||||||
Gzip = 2
|
Gzip = 2
|
||||||
)
|
)
|
||||||
|
|
||||||
var nameRegexp = regexp.MustCompile("^(.+?)\\.([A-Za-z0-9+_]{11})$")
|
var nameRegexp = regexp.MustCompile("^(.+?)\\.([A-Za-z0-9-_]{11})$")
|
||||||
|
|
||||||
// Register with Fs
|
// Register with Fs
|
||||||
func init() {
|
func init() {
|
||||||
|
|
Loading…
Reference in a new issue