aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Library/LibraryService.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-01-08 18:10:17 +0100
committerBond-009 <bond.009@outlook.com>2020-01-08 18:10:17 +0100
commitc3752b1a3080f6f54c77a436c7d0b309792b8872 (patch)
treec762d033f487407f483b03e2f16ac7bec44ad22c /MediaBrowser.Api/Library/LibraryService.cs
parent9dfafb9e9fcddb253b157fe03b085b7fceef4290 (diff)
parent124a852787ff94201de452a952eb31376beafe12 (diff)
Merge branch 'master' into scanerrors
Diffstat (limited to 'MediaBrowser.Api/Library/LibraryService.cs')
-rw-r--r--MediaBrowser.Api/Library/LibraryService.cs5
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);
}
}