mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 07:33:55 +09:00
Softly handle errors when no beatmap file exists in archive
This commit is contained in:
@ -178,7 +178,8 @@ namespace osu.Game.Database
|
||||
{
|
||||
try
|
||||
{
|
||||
return Import(CreateModel(archive), archive);
|
||||
var model = CreateModel(archive);
|
||||
return model == null ? null : Import(model, archive);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
|
Reference in New Issue
Block a user