From 1c26dd4acafb4f81def16167c1e70aadb4851d3e Mon Sep 17 00:00:00 2001 From: Bogdan Date: Wed, 5 Jul 2023 08:31:41 +0300 Subject: [PATCH] Disable library cleanup temporarily --- src/NzbDrone.Core/ImportLists/ImportListSyncService.cs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/NzbDrone.Core/ImportLists/ImportListSyncService.cs b/src/NzbDrone.Core/ImportLists/ImportListSyncService.cs index 801a27fcb..73a61e414 100644 --- a/src/NzbDrone.Core/ImportLists/ImportListSyncService.cs +++ b/src/NzbDrone.Core/ImportLists/ImportListSyncService.cs @@ -57,11 +57,10 @@ namespace NzbDrone.Core.ImportLists return; } - if (!result.AnyFailure) - { - CleanLibrary(result.Movies.ToList()); - } - + // if (!result.AnyFailure) + // { + // CleanLibrary(result.Movies.ToList()); + // } ProcessReports(result); }