mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-28 13:01:28 +02:00
Jobs now use Timespan rather than integer to represent minutes.
This commit is contained in:
@@ -32,9 +32,9 @@ namespace NzbDrone.Core.Jobs
|
||||
get { return "Media File Scan"; }
|
||||
}
|
||||
|
||||
public int DefaultInterval
|
||||
public TimeSpan DefaultInterval
|
||||
{
|
||||
get { return 360; }
|
||||
get { return TimeSpan.FromHours(6); }
|
||||
}
|
||||
|
||||
public virtual void Start(ProgressNotification notification, int targetId, int secondaryTargetId)
|
||||
|
Reference in New Issue
Block a user