Fixed: manual search will use tvrage id if required when sending release to client

This commit is contained in:
Mark McDowall 2014-07-13 17:22:54 -07:00
parent 803a76ed0f
commit c81c8fec27
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ namespace NzbDrone.Api.Indexers
private Response DownloadRelease(ReleaseResource release)
{
var remoteEpisode = _parsingService.Map(release.InjectTo<ParsedEpisodeInfo>(), 0);
var remoteEpisode = _parsingService.Map(release.InjectTo<ParsedEpisodeInfo>(), release.TvRageId);
remoteEpisode.Release = release.InjectTo<ReleaseInfo>();
_downloadService.DownloadReport(remoteEpisode);