diff options
| author | Artiume <siderite@gmail.com> | 2020-01-05 11:49:45 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-05 11:49:45 -0500 |
| commit | 5b559979845a1c050176e3083e6307e56b43182c (patch) | |
| tree | 8debfeef3ff9b15f23088fbf3f7d76925d107bf6 /MediaBrowser.Api/Library/LibraryService.cs | |
| parent | c2db45bad9bb315c39e371f132456c006aad5971 (diff) | |
| parent | 0b592376d59d10d14dbdd248c24f7ec6397c3508 (diff) | |
Merge pull request #6 from jellyfin/master
nightly
Diffstat (limited to 'MediaBrowser.Api/Library/LibraryService.cs')
| -rw-r--r-- | MediaBrowser.Api/Library/LibraryService.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/MediaBrowser.Api/Library/LibraryService.cs b/MediaBrowser.Api/Library/LibraryService.cs index 0cc5e112f..b1ea3e262 100644 --- a/MediaBrowser.Api/Library/LibraryService.cs +++ b/MediaBrowser.Api/Library/LibraryService.cs @@ -1006,8 +1006,8 @@ namespace MediaBrowser.Api.Library public void Delete(DeleteItems request) { var ids = string.IsNullOrWhiteSpace(request.Ids) - ? Array.Empty<string>() - : request.Ids.Split(','); + ? Array.Empty<string>() + : request.Ids.Split(','); foreach (var i in ids) { @@ -1028,7 +1028,6 @@ namespace MediaBrowser.Api.Library _libraryManager.DeleteItem(item, new DeleteOptions { DeleteFileLocation = true - }, true); } } |
