This commit is contained in:
2023-07-03 17:32:08 +08:00
parent 8aa883ecc2
commit fe7324eb40
10 changed files with 400 additions and 80 deletions

View File

@ -190,8 +190,8 @@ function listToString(list, separator) {
separator = separator || ",";
for (let i in list) {
if (undefined !== list[i].url && list[i].url.indexOf("blob:") !== 0) {
strs += list[i].url.replace(baseUrl, "") + separator;
// strs += list[i].url + separator;
// strs += list[i].url.replace(baseUrl, "") + separator;
strs += list[i].url + separator;
}
}
return strs != "" ? strs.substr(0, strs.length - 1) : "";