mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-22 11:42:34 +08:00
commit
a4bf6cd577
|
@ -137,8 +137,8 @@ export default {
|
|||
return;
|
||||
}
|
||||
loginWithPhone({
|
||||
countrycode: this.countryCode.replace("+", "").replaceAll(" ", ""),
|
||||
phone: this.phoneNumber.replaceAll(" ", ""),
|
||||
countrycode: this.countryCode.replace("+", "").replace(/\s/g, ''),
|
||||
phone: this.phoneNumber.replace(/\s/g, ''),
|
||||
password: "fakePassword",
|
||||
md5_password: md5(this.password).toString(),
|
||||
})
|
||||
|
@ -156,7 +156,7 @@ export default {
|
|||
return;
|
||||
}
|
||||
loginWithEmail({
|
||||
email: this.email.replaceAll(" ", ""),
|
||||
email: this.email.replace(/\s/g, ''),
|
||||
password: "fakePassword",
|
||||
md5_password: md5(this.password).toString(),
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue
Block a user