mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
fix: path separator inconsistency on rename
This commit is contained in:
parent
0b0a704d44
commit
34dfb49b71
@ -168,7 +168,7 @@ var resourcePatchHandler = withUser(func(w http.ResponseWriter, r *http.Request,
|
||||
break
|
||||
}
|
||||
new := fmt.Sprintf("%s(%d)%s", base, counter, ext)
|
||||
dst = filepath.Join(dir, new)
|
||||
dst = filepath.ToSlash(dir) + new
|
||||
counter++
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user