Fix incorrect OnlineID mappings

This commit is contained in:
Dean Herbert 2021-10-01 17:06:09 +09:00
parent 05996cc2e9
commit 00e33a1da7
2 changed files with 2 additions and 2 deletions

View File

@ -190,7 +190,7 @@ namespace osu.Game.Beatmaps
#region Implementation of IHasOnlineID
public int? OnlineID => ID;
public int? OnlineID => OnlineBeatmapID;
#endregion

View File

@ -93,7 +93,7 @@ namespace osu.Game.Beatmaps
#region Implementation of IHasOnlineID
public int? OnlineID => ID;
public int? OnlineID => OnlineBeatmapSetID;
#endregion