diff --git a/src/NzbDrone.Core.Test/Configuration/ConfigServiceFixture.cs b/src/NzbDrone.Core.Test/Configuration/ConfigServiceFixture.cs index 8ad51f1e7..ee834d507 100644 --- a/src/NzbDrone.Core.Test/Configuration/ConfigServiceFixture.cs +++ b/src/NzbDrone.Core.Test/Configuration/ConfigServiceFixture.cs @@ -32,7 +32,7 @@ public void Add_new_value_to_database() [Test] public void Get_value_should_return_default_when_no_value() { - Subject.RssSyncInterval.Should().Be(15); + Subject.RssSyncInterval.Should().Be(60); } [Test] @@ -47,7 +47,7 @@ public void get_value_with_persist_should_store_default_value() public void get_value_with_out_persist_should_not_store_default_value() { var interval = Subject.RssSyncInterval; - interval.Should().Be(15); + interval.Should().Be(60); Mocker.GetMock().Verify(c => c.Insert(It.IsAny()), Times.Never()); } diff --git a/src/NzbDrone.Core/Configuration/ConfigService.cs b/src/NzbDrone.Core/Configuration/ConfigService.cs index 4eae607ae..d19cddd67 100644 --- a/src/NzbDrone.Core/Configuration/ConfigService.cs +++ b/src/NzbDrone.Core/Configuration/ConfigService.cs @@ -100,7 +100,7 @@ public string RecycleBin public int RssSyncInterval { - get { return GetValueInt("RssSyncInterval", 15); } + get { return GetValueInt("RssSyncInterval", 60); } set { SetValue("RssSyncInterval", value); } } diff --git a/src/UI/Settings/Indexers/Options/IndexerOptionsViewTemplate.hbs b/src/UI/Settings/Indexers/Options/IndexerOptionsViewTemplate.hbs index 056d12648..7770ba4ee 100644 --- a/src/UI/Settings/Indexers/Options/IndexerOptionsViewTemplate.hbs +++ b/src/UI/Settings/Indexers/Options/IndexerOptionsViewTemplate.hbs @@ -34,7 +34,7 @@
- +