mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 22:22:54 +08:00
Fix background beatmap processor thread not correctly exiting
This commit is contained in:
parent
4de15f975e
commit
257a96ef60
@ -189,6 +189,10 @@ namespace osu.Game
|
|||||||
|
|
||||||
Logger.Log($"Populated maximum statistics for score {id}");
|
Logger.Log($"Populated maximum statistics for score {id}");
|
||||||
}
|
}
|
||||||
|
catch (ObjectDisposedException)
|
||||||
|
{
|
||||||
|
throw;
|
||||||
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
Logger.Log(@$"Failed to populate maximum statistics for {id}: {e}");
|
Logger.Log(@$"Failed to populate maximum statistics for {id}: {e}");
|
||||||
@ -237,6 +241,10 @@ namespace osu.Game
|
|||||||
Logger.Log($"Converted total score for score {id}");
|
Logger.Log($"Converted total score for score {id}");
|
||||||
++processedCount;
|
++processedCount;
|
||||||
}
|
}
|
||||||
|
catch (ObjectDisposedException)
|
||||||
|
{
|
||||||
|
throw;
|
||||||
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
Logger.Log($"Failed to convert total score for {id}: {e}");
|
Logger.Log($"Failed to convert total score for {id}: {e}");
|
||||||
|
Loading…
Reference in New Issue
Block a user