mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
Fix invalid equality comparison in BeatmapLeaderboard
This commit is contained in:
@ -37,7 +37,7 @@ namespace osu.Game.Screens.Select.Leaderboards
|
||||
get => beatmapInfo;
|
||||
set
|
||||
{
|
||||
if (beatmapInfo.Equals(value))
|
||||
if (beatmapInfo?.Equals(value) == true)
|
||||
return;
|
||||
|
||||
beatmapInfo = value;
|
||||
|
Reference in New Issue
Block a user