Now importing downloaded episodes

This commit is contained in:
Mark McDowall 2013-05-14 19:57:57 -07:00
commit fb96abed49
11 changed files with 78 additions and 57 deletions

View file

@ -60,7 +60,7 @@ namespace NzbDrone.Core.Download.Clients
logger.Trace("NZB Download succeeded, saved to: {0}", filename);
var contents = String.Format("plugin://plugin.program.pneumatic/?mode=strm&type=add_file&nzb={0}&nzbname={1}", filename, title);
_diskProvider.WriteAllText(Path.Combine(_configService.DownloadClientTvDirectory, title + ".strm"), contents);
_diskProvider.WriteAllText(Path.Combine(_configService.DownloadedEpisodesFolder, title + ".strm"), contents);
return true;
}