Fixed: Actually run Recycle Bin cleanup
This commit is contained in:
parent
afcfaace19
commit
84e6674e23
|
@ -11,6 +11,7 @@ using NzbDrone.Core.HealthCheck;
|
|||
using NzbDrone.Core.Housekeeping;
|
||||
using NzbDrone.Core.Indexers;
|
||||
using NzbDrone.Core.Lifecycle;
|
||||
using NzbDrone.Core.MediaFiles.Commands;
|
||||
using NzbDrone.Core.Messaging.Commands;
|
||||
using NzbDrone.Core.Messaging.Events;
|
||||
using NzbDrone.Core.Tv.Commands;
|
||||
|
@ -67,6 +68,7 @@ namespace NzbDrone.Core.Jobs
|
|||
new ScheduledTask{ Interval = 6*60, TypeName = typeof(CheckHealthCommand).FullName},
|
||||
new ScheduledTask{ Interval = 12*60, TypeName = typeof(RefreshSeriesCommand).FullName},
|
||||
new ScheduledTask{ Interval = 24*60, TypeName = typeof(HousekeepingCommand).FullName},
|
||||
new ScheduledTask{ Interval = 24*60, TypeName = typeof(CleanUpRecycleBinCommand).FullName},
|
||||
|
||||
new ScheduledTask
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue