mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -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
|
@ -1,4 +1,5 @@
|
|||
using System.Collections.Generic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using NLog;
|
||||
using NzbDrone.Core.Model.Notification;
|
||||
|
@ -31,9 +32,9 @@ namespace NzbDrone.Core.Jobs
|
|||
get { return "Backlog Search"; }
|
||||
}
|
||||
|
||||
public int DefaultInterval
|
||||
public TimeSpan DefaultInterval
|
||||
{
|
||||
get { return 43200; }
|
||||
get { return TimeSpan.FromDays(30); }
|
||||
}
|
||||
|
||||
public void Start(ProgressNotification notification, int targetId, int secondaryTargetId)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue