diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-08-11 19:41:11 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-08-11 19:41:11 -0400 |
| commit | 9b92cc20f2a365018b349e1aba87fdd74e21f965 (patch) | |
| tree | 0bef382517fd114892a5c4477b6e57e95c664020 /MediaBrowser.Controller/Playlists | |
| parent | 7bff6661362e4a5959eec2cab5323ca880df2ad7 (diff) | |
implement removing from playlists
Diffstat (limited to 'MediaBrowser.Controller/Playlists')
| -rw-r--r-- | MediaBrowser.Controller/Playlists/Playlist.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Playlists/Playlist.cs b/MediaBrowser.Controller/Playlists/Playlist.cs index a2335b4bc..ec3e03339 100644 --- a/MediaBrowser.Controller/Playlists/Playlist.cs +++ b/MediaBrowser.Controller/Playlists/Playlist.cs @@ -22,9 +22,9 @@ namespace MediaBrowser.Controller.Playlists return GetPlayableItems(user); } - public IEnumerable<BaseItem> GetManageableItems() + public IEnumerable<Tuple<LinkedChild, BaseItem>> GetManageableItems() { - return GetPlaylistItems(MediaType, GetLinkedChildren(), null); + return GetLinkedChildrenInfos(); } private IEnumerable<BaseItem> GetPlayableItems(User user) |
