mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 21:28:06 +00:00
fix: 云盘无法上传的bug
This commit is contained in:
parent
dd65c67568
commit
aa418cd0d7
34 changed files with 445 additions and 19 deletions
|
|
@ -7,9 +7,11 @@ module.exports = async (query, request) => {
|
|||
const data = {
|
||||
phone: query.phone,
|
||||
countrycode: query.countrycode || '86',
|
||||
password:
|
||||
query.md5_password ||
|
||||
crypto.createHash('md5').update(query.password).digest('hex'),
|
||||
captcha: query.captcha,
|
||||
[query.captcha ? 'captcha' : 'password']: query.captcha
|
||||
? query.captcha
|
||||
: query.md5_password ||
|
||||
crypto.createHash('md5').update(query.password).digest('hex'),
|
||||
rememberLogin: 'true',
|
||||
}
|
||||
let result = await request(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue