fixed episode parse issue

This commit is contained in:
kay.one 2011-04-03 21:20:01 -07:00
commit d7732cab3b
8 changed files with 28 additions and 22 deletions

View file

@ -108,7 +108,7 @@ namespace NzbDrone.Core.Providers
episodeFile.SeriesId = series.SeriesId;
episodeFile.Path = Parser.NormalizePath(filePath);
episodeFile.Size = size;
episodeFile.Quality = Parser.ParseQuality(filePath);
episodeFile.Quality = episodesInFile.Quality;
episodeFile.Proper = Parser.ParseProper(filePath);
var fileId = (int)_repository.Add(episodeFile);