fix: encode tag name in lofter request's form (#14494)

This commit is contained in:
LucunJi 2024-02-19 10:04:38 -05:00 committed by GitHub
parent 37ae90fc79
commit 175a50ef78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ module.exports = async (ctx) => {
'c0-scriptName': 'TagBean',
'c0-methodName': 'search',
'c0-id': '0',
'c0-param0': `string:${name}`,
'c0-param0': `string:${encodeURI(name)}`,
'c0-param1': 'number:0',
'c0-param2': 'string:',
'c0-param3': `string:${type}`,