added sync original quality

This commit is contained in:
Luke Pulverenti
2015-02-09 15:54:04 -05:00
parent 4d6c37f116
commit 6f55ff220a
4 changed files with 32 additions and 6 deletions

View File

@@ -457,10 +457,30 @@ namespace MediaBrowser.Server.Implementations.Sync
return false;
}
if (video.VideoType == VideoType.BluRay || video.VideoType == VideoType.Dvd || video.VideoType == VideoType.HdDvd)
{
return false;
}
if (video.IsPlaceHolder)
{
return false;
}
if (video.IsArchive)
{
return false;
}
if (video.IsStacked)
{
return false;
}
if (video.IsShortcut)
{
return false;
}
}
var game = item as Game;