mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Apply ConfigureAwait changes to game side
This commit is contained in:
@ -69,7 +69,7 @@ namespace osu.Game.Updater
|
||||
lock (updateTaskLock)
|
||||
waitTask = (updateCheckTask ??= PerformUpdateCheck());
|
||||
|
||||
bool hasUpdates = await waitTask;
|
||||
bool hasUpdates = await waitTask.ConfigureAwait(false);
|
||||
|
||||
lock (updateTaskLock)
|
||||
updateCheckTask = null;
|
||||
|
Reference in New Issue
Block a user