修复本子名带#号时无法下载的问题。禁止标签带#号。(同步更新)

This commit is contained in:
chuzhongzai
2023-06-23 20:58:59 +08:00
parent b27530657b
commit 1549696042
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -316,7 +316,7 @@ const mutations = {
task.progress = "下载完成"
let tempLink
tempLink = task.link.replace("element-plus.org", "exhentai.org").replace("element.org", "e-hentai.org")
task.download = GalleryManageUrl + "/file/" + encodeURI(task.name) + "?link=" + tempLink + "&AuthCode=" + state.AuthCode
task.download = GalleryManageUrl + "/file/" + encodeURI(task.name.replace("#", "")) + "?link=" + tempLink + "&AuthCode=" + state.AuthCode
break;
}