From e708a17c6ac8fe99ccc8690c07078ed8275e2d7e Mon Sep 17 00:00:00 2001 From: "kay.one" Date: Sun, 2 Jun 2013 22:41:24 -0700 Subject: [PATCH] added RefreshSeriesCommand to scheduler (6 hours) --- NzbDrone.Core/Jobs/TaskManager.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/NzbDrone.Core/Jobs/TaskManager.cs b/NzbDrone.Core/Jobs/TaskManager.cs index 199136702..54238170c 100644 --- a/NzbDrone.Core/Jobs/TaskManager.cs +++ b/NzbDrone.Core/Jobs/TaskManager.cs @@ -7,6 +7,7 @@ using NzbDrone.Core.Indexers; using NzbDrone.Core.Lifecycle; using NzbDrone.Core.MediaFiles.Commands; using NzbDrone.Core.Providers; +using NzbDrone.Core.Tv.Commands; using NzbDrone.Core.Update.Commands; namespace NzbDrone.Core.Jobs @@ -39,7 +40,7 @@ namespace NzbDrone.Core.Jobs { new ScheduledTask{ Interval = 25, TypeName = typeof(RssSyncCommand).FullName}, new ScheduledTask{ Interval = 12*60, TypeName = typeof(UpdateXemMappings).FullName}, - new ScheduledTask{ Interval = 6*60, TypeName = typeof(DiskScanCommand).FullName}, + new ScheduledTask{ Interval = 6*60, TypeName = typeof(RefreshSeriesCommand).FullName}, new ScheduledTask{ Interval = 1, TypeName = typeof(DownloadedEpisodesScanCommand).FullName}, new ScheduledTask{ Interval = 5, TypeName = typeof(ApplicationUpdateCommand).FullName} };