Fixed: RSS Sync Interval validation

This commit is contained in:
Mark McDowall
2015-12-19 18:02:38 -08:00
parent 2d3c3bbb0c
commit de754169fb
6 changed files with 48 additions and 3 deletions

View File

@@ -120,6 +120,11 @@ namespace NzbDrone.Core.Jobs
return 10;
}
if (interval < 0)
{
return 0;
}
return interval;
}