1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-25 10:30:16 +08:00

Configure await calls

This commit is contained in:
Dan Balasescu
2025-08-28 13:47:55 +09:00
Unverified
parent b95573f97d
commit 9ae6e509b7
@@ -313,14 +313,14 @@ namespace osu.Game.Online.Multiplayer
{
await scheduledReset.ConfigureAwait(false);
await LeaveRoomInternal().ConfigureAwait(false);
});
}).ConfigureAwait(false);
}
finally
{
await runOnUpdateThreadAsync(() =>
{
pendingRequests.Clear();
});
}).ConfigureAwait(false);
}
});
}