mirror of
https://github.com/ppy/osu.git
synced 2024-11-14 15:07:52 +08:00
Fix occasional test failures on new menu content tests
Scheduled data transfer could still overwrite test data.
This commit is contained in:
parent
8296e6318a
commit
96514132c1
@ -77,7 +77,15 @@ namespace osu.Game.Screens.Menu
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if (r.IsCompletedSuccessfully)
|
if (r.IsCompletedSuccessfully)
|
||||||
Schedule(() => Current.Value = request.ResponseObject);
|
{
|
||||||
|
Schedule(() =>
|
||||||
|
{
|
||||||
|
if (!FetchOnlineContent)
|
||||||
|
return;
|
||||||
|
|
||||||
|
Current.Value = request.ResponseObject;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
// if the request failed, "observe" the exception.
|
// if the request failed, "observe" the exception.
|
||||||
// it isn't very important why this failed, as it's only for display.
|
// it isn't very important why this failed, as it's only for display.
|
||||||
|
Loading…
Reference in New Issue
Block a user