1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

Fix seemingly innocent logic change causing breakage in score imports

This commit is contained in:
Dean Herbert 2021-03-15 14:20:59 +09:00
parent fce21f23d6
commit 1e519f0d31

View File

@ -29,7 +29,7 @@ namespace osu.Game.Database
break;
case ScoreInfo scoreInfo:
scoreInfo.Beatmap.BeatmapSet.Requery(contextFactory);
requeryFiles(scoreInfo.Beatmap.BeatmapSet.Files, contextFactory);
requeryFiles(scoreInfo.Files, contextFactory);
break;