mirror of
https://github.com/Sonarr/Sonarr
synced 2026-04-16 18:21:40 +02:00
Fixed: Actually run Recycle Bin cleanup
This commit is contained in:
parent
afcfaace19
commit
84e6674e23
1 changed files with 2 additions and 0 deletions
|
|
@ -11,6 +11,7 @@
|
|||
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 @@ public void Handle(ApplicationStartedEvent message)
|
|||
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 a new issue