update IsHD

This commit is contained in:
Luke Pulverenti 2015-10-20 12:53:51 -04:00
parent bf8ff731ca
commit adda5f05ce
2 changed files with 8 additions and 2 deletions

View File

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

View File

@ -1,4 +1,4 @@
using System.Reflection; using System.Reflection;
//[assembly: AssemblyVersion("3.0.*")] [assembly: AssemblyVersion("3.0.*")]
[assembly: AssemblyVersion("3.0.5768.4")] //[assembly: AssemblyVersion("3.0.5768.4")]