Changed the second .xvid to .divx.

.mkv & .ts will be treated as HDTV, all others will be treated as SDTV.
This commit is contained in:
Mark McDowall 2012-01-13 21:40:09 -08:00
commit dfbb222c6c
2 changed files with 11 additions and 1 deletions

View file

@ -277,13 +277,23 @@ namespace NzbDrone.Core
{
case ".avi":
case ".xvid":
case ".divx":
case ".wmv":
case ".mp4":
case ".mpg":
case ".mpeg":
case ".mov":
case ".rm":
case ".rmvb":
case ".flv":
case ".dvr-ms":
case ".ogm":
{
result.QualityType = QualityTypes.SDTV;
break;
}
case ".mkv":
case ".ts":
{
result.QualityType = QualityTypes.HDTV;
break;