1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-30 17:40:24 +08:00

Fix incorrect OnlineID mappings

This commit is contained in:
Dean Herbert
2021-10-01 17:06:09 +09:00
Unverified
parent 05996cc2e9
commit 00e33a1da7
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -190,7 +190,7 @@ namespace osu.Game.Beatmaps
#region Implementation of IHasOnlineID
public int? OnlineID => ID;
public int? OnlineID => OnlineBeatmapID;
#endregion
+1 -1
View File
@@ -93,7 +93,7 @@ namespace osu.Game.Beatmaps
#region Implementation of IHasOnlineID
public int? OnlineID => ID;
public int? OnlineID => OnlineBeatmapSetID;
#endregion