mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-28 13:01:28 +02:00
Converted jobs to dynamic
This commit is contained in:
@@ -36,14 +36,14 @@ namespace NzbDrone.Core.Jobs
|
||||
get { return TimeSpan.FromTicks(0); }
|
||||
}
|
||||
|
||||
public void Start(ProgressNotification notification, int targetId, int secondaryTargetId)
|
||||
public void Start(ProgressNotification notification, dynamic options)
|
||||
{
|
||||
var missingEpisodes = GetMissingForEnabledSeries();
|
||||
|
||||
Logger.Debug("Processing missing episodes from the past week, count: {0}", missingEpisodes.Count);
|
||||
foreach (var episode in missingEpisodes)
|
||||
{
|
||||
_episodeSearchJob.Start(notification, episode.EpisodeId, 0);
|
||||
_episodeSearchJob.Start(notification, new { EpisodeId = episode.EpisodeId });
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user