Better parser logging.

This commit is contained in:
kay.one
2012-01-19 22:35:10 -08:00
parent 1e580856ca
commit 78268f3c58
7 changed files with 21 additions and 12 deletions

View File

@@ -29,7 +29,7 @@ namespace NzbDrone.Core.Model
public string NzbUrl { get; set; }
public string NzbTitle { get; set; }
public string OriginalString { get; set; }
public Series Series { get; set; }
@@ -48,7 +48,7 @@ namespace NzbDrone.Core.Model
return string.Format("{0} - S{1:00}E{2} {3}", SeriesTitle, SeasonNumber,
String.Join("-", EpisodeNumbers), Quality);
return NzbTitle;
return OriginalString;
}
}