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
1 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ using NzbDrone.Core.Model.Notification;
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 @@ namespace NzbDrone.Core.Jobs
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)
{