Fix test not working due to null refs

This commit is contained in:
Dean Herbert
2017-10-30 20:55:23 +09:00
parent 1ae0eff6ad
commit d871c3fdda
2 changed files with 5 additions and 3 deletions

View File

@ -102,7 +102,9 @@ namespace osu.Game.Overlays.Profile.Sections.Ranks
scoreContainer.Clear();
showMoreButton.Hide();
missing.Show();
showMore();
if (newUser != null)
showMore();
}
private void showMore()