diff --git a/NzbDrone.Core/Jobs/TaskManager.cs b/NzbDrone.Core/Jobs/TaskManager.cs index 6033b7420..1a98519b0 100644 --- a/NzbDrone.Core/Jobs/TaskManager.cs +++ b/NzbDrone.Core/Jobs/TaskManager.cs @@ -41,7 +41,7 @@ namespace NzbDrone.Core.Jobs new ScheduledTask{ Interval = 12*60, TypeName = typeof(UpdateXemMappings).FullName}, new ScheduledTask{ Interval = 6*60, TypeName = typeof(DiskScanCommand).FullName}, new ScheduledTask{ Interval = 1, TypeName = typeof(DownloadedEpisodesScanCommand).FullName}, - new ScheduledTask{ Interval = 15, TypeName = typeof(ApplicationUpdateCommand).FullName} + new ScheduledTask{ Interval = 5, TypeName = typeof(ApplicationUpdateCommand).FullName} }; var currentTasks = _scheduledTaskRepository.All();