Skip to content

Commit

Permalink
Merge pull request ppy#7433 from peppy/fix-new-user-reg
Browse files Browse the repository at this point in the history
Fix new account registration attempting to login with email
  • Loading branch information
smoogipoo authored Jan 4, 2020
2 parents c73512a + a756d5d commit 62a780a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game/Overlays/AccountCreation/ScreenEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ private void performRegistration()
return;
}

api.Login(emailTextBox.Text, passwordTextBox.Text);
api.Login(usernameTextBox.Text, passwordTextBox.Text);
});
});
}
Expand Down

0 comments on commit 62a780a

Please sign in to comment.