mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
Jobs now use Timespan rather than integer to represent minutes.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System.Linq;
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Diagnostics;
|
||||
using System.IO;
|
||||
using NLog;
|
||||
@@ -39,9 +40,9 @@ namespace NzbDrone.Core.Jobs
|
||||
get { return "Update Application Job"; }
|
||||
}
|
||||
|
||||
public int DefaultInterval
|
||||
public TimeSpan DefaultInterval
|
||||
{
|
||||
get { return 10080; }
|
||||
get { return TimeSpan.FromDays(2); }
|
||||
}
|
||||
|
||||
public virtual void Start(ProgressNotification notification, int targetId, int secondaryTargetId)
|
||||
|
||||
Reference in New Issue
Block a user