1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-14 05:47:20 +08:00

Unify ConfigureAwait() calls across method

This commit is contained in:
Bartłomiej Dach 2025-02-05 10:28:23 +01:00
parent c5deb9f36b
commit e5943e460d
No known key found for this signature in database

View File

@ -237,7 +237,7 @@ namespace osu.Game.Screens.SelectV2
if (DebounceDelay > 0)
{
log($"Filter operation queued, waiting for {DebounceDelay} ms debounce");
await Task.Delay(DebounceDelay, cts.Token).ConfigureAwait(true);
await Task.Delay(DebounceDelay, cts.Token).ConfigureAwait(false);
}
// Copy must be performed on update thread for now (see ConfigureAwait above).