|
|
|
@ -179,10 +179,16 @@ namespace MediaBrowser.Server.Implementations.Library.Resolvers
|
|
|
|
|
else if (string.Equals(videoInfo.StubType, "hddvd", StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
video.VideoType = VideoType.HdDvd;
|
|
|
|
|
video.IsHD = true;
|
|
|
|
|
}
|
|
|
|
|
else if (string.Equals(videoInfo.StubType, "bluray", StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
video.VideoType = VideoType.BluRay;
|
|
|
|
|
video.IsHD = true;
|
|
|
|
|
}
|
|
|
|
|
else if (string.Equals(videoInfo.StubType, "hdtv", StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
video.IsHD = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|