1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-19 03:23:05 +08:00

fix missing text appearing when request returns nothing but beatmaps are already there

This commit is contained in:
jorolf 2017-11-18 18:27:30 +01:00
parent 7b1083b824
commit 4264641303

View File

@ -40,7 +40,7 @@ namespace osu.Game.Overlays.Profile.Sections.Beatmaps
ShowMoreButton.FadeTo(sets.Count == ItemsPerPage ? 1 : 0);
ShowMoreLoading.Hide();
if (!sets.Any())
if (!sets.Any() && VisiblePages == 1)
{
MissingText.Show();
return;