mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-01 07:55:22 +02:00
Jobs now use Timespan rather than integer to represent minutes.
This commit is contained in:
@@ -31,9 +31,9 @@ namespace NzbDrone.Core.Jobs
|
||||
get { return "Rename Season"; }
|
||||
}
|
||||
|
||||
public int DefaultInterval
|
||||
public TimeSpan DefaultInterval
|
||||
{
|
||||
get { return 0; }
|
||||
get { return TimeSpan.FromTicks(0); }
|
||||
}
|
||||
|
||||
public void Start(ProgressNotification notification, int targetId, int secondaryTargetId)
|
||||
|
Reference in New Issue
Block a user