1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-01 23:00:50 +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
Unverified
parent b7aba19441
commit 4139301afa
+3
View File
@@ -362,7 +362,10 @@ namespace osu.Game
foreach (var importer in fileImporters)
{
if (importer.HandledExtensions.Contains(extension))
{
await importer.Import(paths);
continue;
}
}
}