mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:07:52 +08:00
Fix incorrect async continuation causing tournament client to not enable save button
This commit is contained in:
parent
2075583313
commit
0fb12508f0
@ -70,7 +70,7 @@ namespace osu.Game.Tournament
|
|||||||
|
|
||||||
private async Task checkForChanges()
|
private async Task checkForChanges()
|
||||||
{
|
{
|
||||||
string serialisedLadder = await Task.Run(() => tournamentGame.GetSerialisedLadder()).ConfigureAwait(false);
|
string serialisedLadder = await Task.Run(() => tournamentGame.GetSerialisedLadder()).ConfigureAwait(true);
|
||||||
|
|
||||||
// If a save hasn't been triggered by the user yet, populate the initial value
|
// If a save hasn't been triggered by the user yet, populate the initial value
|
||||||
lastSerialisedLadder ??= serialisedLadder;
|
lastSerialisedLadder ??= serialisedLadder;
|
||||||
|
Loading…
Reference in New Issue
Block a user