fix: #1315
Some checks are pending
Build Action / Build-LiteLoader (push) Waiting to run
Build Action / Build-Shell (push) Waiting to run

This commit is contained in:
时瑾 2025-10-14 09:38:18 +08:00
parent 98ef642cd1
commit 0129188739
No known key found for this signature in database
GPG Key ID: 023F70A1B8F8C196

View File

@ -91,7 +91,9 @@ export const createUrl = (
url.searchParams.set(key, search[key])
}
}
return url.toString()
/** 进行url解码 对特殊字符进行处理 */
return decodeURIComponent(url.toString())
}
/**