mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-05-08 19:22:57 +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
|
break
|
||||||
}
|
}
|
||||||
new := fmt.Sprintf("%s(%d)%s", base, counter, ext)
|
new := fmt.Sprintf("%s(%d)%s", base, counter, ext)
|
||||||
dst = filepath.Join(dir, new)
|
dst = filepath.ToSlash(dir) + new
|
||||||
counter++
|
counter++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user