diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-10-16 02:10:55 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-10-16 02:10:55 -0400 |
| commit | 4ef9f68837d0c2d2b371239d8568edb6473c6072 (patch) | |
| tree | 8932031cbdc4cf46a7ef6b03a013345fdf3aba21 /MediaBrowser.Controller/Playlists | |
| parent | 6f15141d73aae2fa78511077580fdc2cd895694f (diff) | |
support delete per library
Diffstat (limited to 'MediaBrowser.Controller/Playlists')
| -rw-r--r-- | MediaBrowser.Controller/Playlists/Playlist.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Playlists/Playlist.cs b/MediaBrowser.Controller/Playlists/Playlist.cs index ee96a8c3b7..071f8a0961 100644 --- a/MediaBrowser.Controller/Playlists/Playlist.cs +++ b/MediaBrowser.Controller/Playlists/Playlist.cs @@ -73,7 +73,7 @@ namespace MediaBrowser.Controller.Playlists return 1; } - public override bool IsAuthorizedToDelete(User user) + public override bool IsAuthorizedToDelete(User user, List<Folder> allCollectionFolders) { return true; } |
