mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-05-08 11:22:10 +00:00
fix: file upload missing path slash
This commit is contained in:
parent
5aaeb3b76d
commit
5e27ba5c8c
@ -368,7 +368,7 @@ export default {
|
||||
}
|
||||
|
||||
let files = await upload.scanFiles(dt)
|
||||
let path = this.$route.path + base
|
||||
let path = this.$route.path.endsWith('/') ? this.$route.path + base : this.$route.path + '/' + base
|
||||
let items = this.req.items
|
||||
|
||||
if (base !== '') {
|
||||
@ -409,7 +409,7 @@ export default {
|
||||
}
|
||||
}
|
||||
|
||||
let path = this.$route.path
|
||||
let path = this.$route.path.endsWith('/') ? this.$route.path : this.$route.path + '/'
|
||||
let conflict = upload.checkConflict(files, this.req.items)
|
||||
|
||||
if (conflict) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user