1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-08-16 07:19:51 +02:00

Better example when not renaming with NzbDrone

This commit is contained in:
Mark McDowall 2013-08-13 16:41:47 -07:00
parent 435904bc0a
commit 066bf4e8aa

View File

@ -50,7 +50,7 @@ private NamingResource GetExamples(NamingResource resource)
var episodeFile = new EpisodeFile
{
Quality = new QualityModel(Quality.HDTV720p),
Path = @"C:\Test\Series.Title.S01E01.hdtv.avi"
Path = @"C:\Test\Series.Title.S01E01.720p.HDTV.x264-EVOLVE.mkv"
};
resource.SingleEpisodeExample = _buildFileNames.BuildFilename(new List<Episode> { episode1 },
@ -58,7 +58,7 @@ private NamingResource GetExamples(NamingResource resource)
episodeFile,
nameSpec);
episodeFile.Path = @"C:\Test\Series.Title.S01E01-E02.hdtv.avi";
episodeFile.Path = @"C:\Test\Series.Title.S01E01-E02.720p.HDTV.x264-EVOLVE.mkv";
resource.MultiEpisodeExample = _buildFileNames.BuildFilename(new List<Episode> { episode1, episode2 },
series,