1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-27 22:20:54 +08:00

Fix password paste issues

This commit is contained in:
Dean Herbert
2018-12-30 22:31:29 +09:00
Unverified
parent beb3df65aa
commit bdac20eeda
+2 -2
View File
@@ -190,8 +190,8 @@ namespace osu.Game.Online.API
{
Debug.Assert(State == APIState.Offline);
ProvidedUsername = username;
this.password = password;
ProvidedUsername = username.Trim();
this.password = password.Trim();
}
public RegistrationRequest.RegistrationRequestErrors CreateAccount(string email, string username, string password)