mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Apply ConfigureAwait changes to game side
This commit is contained in:
@ -33,12 +33,12 @@ namespace osu.Game.IPC
|
||||
if (importer == null)
|
||||
{
|
||||
// we want to contact a remote osu! to handle the import.
|
||||
await SendMessageAsync(new ArchiveImportMessage { Path = path });
|
||||
await SendMessageAsync(new ArchiveImportMessage { Path = path }).ConfigureAwait(false);
|
||||
return;
|
||||
}
|
||||
|
||||
if (importer.HandledExtensions.Contains(Path.GetExtension(path)?.ToLowerInvariant()))
|
||||
await importer.Import(path);
|
||||
await importer.Import(path).ConfigureAwait(false);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user