From 058ca93576dd512231866be19bfa71ecbb93bf87 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 7 Dec 2011 19:46:45 -0800 Subject: [PATCH] DiskScanJob changed to run every 6 hours, instead of every hour. --- NzbDrone.Core/Jobs/DiskScanJob.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NzbDrone.Core/Jobs/DiskScanJob.cs b/NzbDrone.Core/Jobs/DiskScanJob.cs index fb1333ea5..b82accc84 100644 --- a/NzbDrone.Core/Jobs/DiskScanJob.cs +++ b/NzbDrone.Core/Jobs/DiskScanJob.cs @@ -34,7 +34,7 @@ namespace NzbDrone.Core.Jobs public int DefaultInterval { - get { return 60; } + get { return 360; } } public virtual void Start(ProgressNotification notification, int targetId, int secondaryTargetId)