1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 12:33:01 +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
commit e2001f208a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -126,10 +126,17 @@ namespace osu.Game
var set = r.Find<BeatmapSetInfo>(id); var set = r.Find<BeatmapSetInfo>(id);
if (set != null) if (set != null)
{
try
{ {
Logger.Log($"Background processing {set} ({++i} / {beatmapSetIds.Count})"); Logger.Log($"Background processing {set} ({++i} / {beatmapSetIds.Count})");
beatmapUpdater.Process(set); beatmapUpdater.Process(set);
} }
catch (Exception e)
{
Logger.Log($"Background processing failed on {set}: {e}");
}
}
}); });
} }
} }