1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-13 08:32:57 +08:00

Use another beatmap query to not depend on databased score info

This commit is contained in:
Joseph Madamba 2024-04-15 20:18:24 -07:00
parent ed8b596325
commit 67cfcddc77

View File

@ -718,7 +718,7 @@ namespace osu.Game
return;
}
var databasedBeatmap = BeatmapManager.QueryBeatmap(b => b.ID == databasedScoreInfo.BeatmapInfo.ID);
var databasedBeatmap = BeatmapManager.QueryBeatmap(b => b.OnlineID == score.Beatmap.OnlineID);
if (databasedBeatmap == null)
{