fix: delete extra remove prefix (#1186)

Fix file actions within /files dir
This commit is contained in:
WeidiDeng
2020-12-16 23:08:56 +08:00
committed by GitHub
parent bc4a6462ce
commit 7a5298a755

View File

@@ -121,7 +121,7 @@ function moveCopy (items, copy = false, overwrite = false, rename = false) {
let promises = []
for (let item of items) {
const from = removePrefix(item.from)
const from = item.from
const to = encodeURIComponent(removePrefix(item.to))
const url = `${from}?action=${copy ? 'copy' : 'rename'}&destination=${to}&override=${overwrite}&rename=${rename}`
promises.push(resourceAction(url, 'PATCH'))