1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00

Fixed issue with Daily Series searching

This commit is contained in:
Mark McDowall 2013-01-16 18:51:25 -08:00
parent d6224bdfff
commit 7d82c249f9

View File

@ -5,6 +5,7 @@
using NzbDrone.Core.Providers;
using NzbDrone.Core.Providers.DecisionEngine;
using NzbDrone.Core.Providers.Search;
using NzbDrone.Core.Repository;
namespace NzbDrone.Core.Jobs
{
@ -47,7 +48,7 @@ public virtual void Start(ProgressNotification notification, dynamic options)
if (options == null || options.EpisodeId <= 0)
throw new ArgumentException("options");
var episode = _episodeProvider.GetEpisode(options.EpisodeId);
Episode episode = _episodeProvider.GetEpisode(options.EpisodeId);
if (episode == null)
{