mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Jobs now use Timespan rather than integer to represent minutes.
This commit is contained in:
parent
624b6e5acb
commit
e358ad6d87
24 changed files with 60 additions and 55 deletions
|
@ -44,12 +44,12 @@ namespace NzbDrone.Core.Jobs
|
|||
get { return "New Series Update"; }
|
||||
}
|
||||
|
||||
public int DefaultInterval
|
||||
public TimeSpan DefaultInterval
|
||||
{
|
||||
get { return 1; }
|
||||
get { return TimeSpan.FromMinutes(1); }
|
||||
}
|
||||
|
||||
public void Start(ProgressNotification notification, int targetId, int secondaryTargetId )
|
||||
public void Start(ProgressNotification notification, int targetId, int secondaryTargetId)
|
||||
{
|
||||
_attemptedSeries = new List<int>();
|
||||
ScanSeries(notification);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue