Set Drone Factory Interval default to 0 (#515)

Fixes #447
This commit is contained in:
Tim Turner 2017-01-29 14:09:54 -05:00 committed by GitHub
commit a35c5f79c1

View file

@ -176,7 +176,7 @@ namespace NzbDrone.Core.Configuration
public int DownloadedEpisodesScanInterval public int DownloadedEpisodesScanInterval
{ {
get { return GetValueInt("DownloadedEpisodesScanInterval", 1); } get { return GetValueInt("DownloadedEpisodesScanInterval", 0); }
set { SetValue("DownloadedEpisodesScanInterval", value); } set { SetValue("DownloadedEpisodesScanInterval", value); }
} }