diff --git a/osu.Game/Screens/OnlinePlay/Multiplayer/MultiplayerMatchSubScreen.cs b/osu.Game/Screens/OnlinePlay/Multiplayer/MultiplayerMatchSubScreen.cs
index 96a9804067..946c749db3 100644
--- a/osu.Game/Screens/OnlinePlay/Multiplayer/MultiplayerMatchSubScreen.cs
+++ b/osu.Game/Screens/OnlinePlay/Multiplayer/MultiplayerMatchSubScreen.cs
@@ -138,7 +138,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
RelativeSizeAxes = Axes.X,
Height = 40,
Text = "Add item",
- Action = () => OpenSongSelection(null)
+ Action = () => OpenSongSelection()
},
},
null,
@@ -220,7 +220,11 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
}
};
- internal void OpenSongSelection(PlaylistItem itemToEdit)
+ ///
+ /// Opens the song selection screen to add or edit an item.
+ ///
+ /// An optional playlist item to edit. If null, a new item will be added instead.
+ internal void OpenSongSelection([CanBeNull] PlaylistItem itemToEdit = null)
{
if (!this.IsCurrentScreen())
return;