mirror of
https://github.com/ppy/osu.git
synced 2024-11-13 16:13:34 +08:00
Ensure only run once
This commit is contained in:
parent
fe15b26bd2
commit
ad6af1d9b7
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user