From a8a029de73dbdf5f281d434244b06a3561010ccf Mon Sep 17 00:00:00 2001 From: Shadowghost Date: Wed, 11 Mar 2026 09:16:35 +0100 Subject: Fix DeleteItemsUnsafeFast usage --- MediaBrowser.Controller/Library/ILibraryManager.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'MediaBrowser.Controller/Library') diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index bcabfff772..5c391098d3 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -391,8 +391,9 @@ namespace MediaBrowser.Controller.Library /// Deletes items that are not having any children like Actors. /// /// Items to delete. + /// Whether to delete source media files on disk. Defaults to false. /// In comparison to this method skips a lot of steps assuming there are no children to recusively delete nor does it define the special handling for channels and alike. - public void DeleteItemsUnsafeFast(IEnumerable items); + public void DeleteItemsUnsafeFast(IReadOnlyCollection items, bool deleteSourceFiles = false); /// /// Deletes the item. -- cgit v1.2.3