1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 16:07:24 +08:00

Ensure only run once

This commit is contained in:
Dean Herbert 2023-11-22 12:03:42 +09:00
parent fe15b26bd2
commit ad6af1d9b7
No known key found for this signature in database

View File

@ -72,7 +72,7 @@ namespace osu.Game.Overlays
apiState.BindValueChanged(state => Schedule(() =>
{
if (state.NewValue == APIState.Online && user != null)
fetchAndSetContent();
Scheduler.AddOnce(fetchAndSetContent);
}));
}
@ -89,7 +89,7 @@ namespace osu.Game.Overlays
ruleset = userRuleset;
Show();
fetchAndSetContent();
Scheduler.AddOnce(fetchAndSetContent);
}
private void fetchAndSetContent()