mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 21:28:06 +00:00
commit
a4bf6cd577
1 changed files with 3 additions and 3 deletions
|
|
@ -137,8 +137,8 @@ export default {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
loginWithPhone({
|
loginWithPhone({
|
||||||
countrycode: this.countryCode.replace("+", "").replaceAll(" ", ""),
|
countrycode: this.countryCode.replace("+", "").replace(/\s/g, ''),
|
||||||
phone: this.phoneNumber.replaceAll(" ", ""),
|
phone: this.phoneNumber.replace(/\s/g, ''),
|
||||||
password: "fakePassword",
|
password: "fakePassword",
|
||||||
md5_password: md5(this.password).toString(),
|
md5_password: md5(this.password).toString(),
|
||||||
})
|
})
|
||||||
|
|
@ -156,7 +156,7 @@ export default {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
loginWithEmail({
|
loginWithEmail({
|
||||||
email: this.email.replaceAll(" ", ""),
|
email: this.email.replace(/\s/g, ''),
|
||||||
password: "fakePassword",
|
password: "fakePassword",
|
||||||
md5_password: md5(this.password).toString(),
|
md5_password: md5(this.password).toString(),
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue