1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-12 08:33:04 +08:00

Exit import process after first handler is run

This commit is contained in:
Dean Herbert 2020-10-02 16:49:47 +09:00
parent b7aba19441
commit 4139301afa

View File

@ -362,7 +362,10 @@ namespace osu.Game
foreach (var importer in fileImporters)
{
if (importer.HandledExtensions.Contains(extension))
{
await importer.Import(paths);
continue;
}
}
}