From 1660e3c20bb41f1b47561f2b9c1e3f80afe04996 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 28 Oct 2019 12:42:15 -0700 Subject: [PATCH] Fixed: Actually run Recycle Bin cleanup (cherry picked from commit 84e6674e239fdf8deea7bc7fb7f545b8e4425e6f) --- src/NzbDrone.Core/Jobs/TaskManager.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/NzbDrone.Core/Jobs/TaskManager.cs b/src/NzbDrone.Core/Jobs/TaskManager.cs index 57fdcc622..bb948ba44 100644 --- a/src/NzbDrone.Core/Jobs/TaskManager.cs +++ b/src/NzbDrone.Core/Jobs/TaskManager.cs @@ -108,6 +108,12 @@ namespace NzbDrone.Core.Jobs TypeName = typeof(HousekeepingCommand).FullName }, + new ScheduledTask + { + Interval = 24 * 60, + TypeName = typeof(CleanUpRecycleBinCommand).FullName + }, + new ScheduledTask { Interval = GetBackupInterval(),