mirror of https://github.com/ppy/osu
Ensure only run once
This commit is contained in:
parent
fe15b26bd2
commit
ad6af1d9b7
|
@ -72,7 +72,7 @@ private void load()
|
|||
apiState.BindValueChanged(state => Schedule(() =>
|
||||
{
|
||||
if (state.NewValue == APIState.Online && user != null)
|
||||
fetchAndSetContent();
|
||||
Scheduler.AddOnce(fetchAndSetContent);
|
||||
}));
|
||||
}
|
||||
|
||||
|
@ -89,7 +89,7 @@ public void ShowUser(IUser userToShow, IRulesetInfo? userRuleset = null)
|
|||
ruleset = userRuleset;
|
||||
|
||||
Show();
|
||||
fetchAndSetContent();
|
||||
Scheduler.AddOnce(fetchAndSetContent);
|
||||
}
|
||||
|
||||
private void fetchAndSetContent()
|
||||
|
|
Loading…
Reference in New Issue