Fix beatmap cards still potentially showing twice in listing

This commit is contained in:
Salman Ahmed 2022-11-04 03:20:14 +03:00
parent 37b5f48911
commit ac8fb4f9b2
1 changed files with 3 additions and 0 deletions

View File

@ -149,5 +149,8 @@ public string AuthorString
#endregion
public bool Equals(IBeatmapSetInfo? other) => other is APIBeatmapSet b && this.MatchesOnlineID(b);
// ReSharper disable once NonReadonlyMemberInGetHashCode
public override int GetHashCode() => OnlineID.GetHashCode();
}
}