file name escape uri

fix https://github.com/seaweedfs/seaweedfs/issues/3969
This commit is contained in:
chrislu 2022-11-13 23:01:56 -08:00
parent 2009719b89
commit aae82dca6f

View file

@ -319,7 +319,7 @@
if (!baseUrl.endsWith('/')) {
baseUrl += '/';
}
var url = baseUrl + dirName;
var url = baseUrl + encodeURIComponent(dirName);
if (!url.endsWith('/')) {
url += '/';
}
@ -335,7 +335,7 @@
if (newName == null || newName == '') {
return;
}
var url = basePath + newName;
var url = basePath + encodeURIComponent(newName);
var originPath = basePath + originName;
url += '?mv.from=' + originPath;
var xhr = new XMLHttpRequest();