1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-29 07:29:53 +08:00

Fix incorrect type check

This commit is contained in:
Dean Herbert
2021-11-12 18:32:39 +09:00
Unverified
parent 7349e5521a
commit 1c49c4a602
+1 -1
View File
@@ -55,7 +55,7 @@ namespace osu.Game.Models
public bool Equals(IBeatmapSetInfo? other)
{
if (other is RealmBeatmap b)
if (other is RealmBeatmapSet b)
return b.ID == ID;
if (OnlineID > 0 && other?.OnlineID > 0)