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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user