1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-24 01:33:47 +08:00

Merge pull request #22310 from peppy/fix-threading-tournament-save

Fix incorrect async continuation causing tournament client to not enable save button
This commit is contained in:
Dean Herbert
2023-01-21 15:31:56 +09:00
committed by GitHub
Unverified
+1 -1
View File
@@ -70,7 +70,7 @@ namespace osu.Game.Tournament
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
lastSerialisedLadder ??= serialisedLadder;