1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 15:20:18 +08:00

Merge branch 'master' into search-filter

This commit is contained in:
solstice23
2022-07-24 12:39:48 +08:00
committed by GitHub
Unverified
+9 -2
View File
@@ -127,8 +127,15 @@ namespace osu.Game
if (set != null)
{
Logger.Log($"Background processing {set} ({++i} / {beatmapSetIds.Count})");
beatmapUpdater.Process(set);
try
{
Logger.Log($"Background processing {set} ({++i} / {beatmapSetIds.Count})");
beatmapUpdater.Process(set);
}
catch (Exception e)
{
Logger.Log($"Background processing failed on {set}: {e}");
}
}
});
}