Skip to content

Commit 2a9b1ea

Browse files
authored
Merge pull request #22310 from peppy/fix-threading-tournament-save
Fix incorrect async continuation causing tournament client to not enable save button
2 parents 2075583 + 0fb1250 commit 2a9b1ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

osu.Game.Tournament/SaveChangesOverlay.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ protected override void LoadComplete()
7070

7171
private async Task checkForChanges()
7272
{
73-
string serialisedLadder = await Task.Run(() => tournamentGame.GetSerialisedLadder()).ConfigureAwait(false);
73+
string serialisedLadder = await Task.Run(() => tournamentGame.GetSerialisedLadder()).ConfigureAwait(true);
7474

7575
// If a save hasn't been triggered by the user yet, populate the initial value
7676
lastSerialisedLadder ??= serialisedLadder;

0 commit comments

Comments
 (0)