mirror of
https://github.com/ppy/osu.git
synced 2024-11-15 13:47:24 +08:00
Fix OsuGameBase.Migrate()
eating exception messages for breakfast
Whomst've thought this was an ok thing to do? How did this pass review? Let's leave these as rhetorical questions right now. Huge chances are I'd implicate myself with at least one of them.
This commit is contained in:
parent
310eec69fc
commit
1633cbdb66
@ -545,7 +545,10 @@ namespace osu.Game
|
||||
realmBlocker = realm.BlockAllOperations("migration");
|
||||
success = true;
|
||||
}
|
||||
catch { }
|
||||
catch (Exception ex)
|
||||
{
|
||||
Logger.Log($"Attempting to block all operations failed: {ex}", LoggingTarget.Database);
|
||||
}
|
||||
|
||||
readyToRun.Set();
|
||||
}, false);
|
||||
|
Loading…
Reference in New Issue
Block a user