update xmltv xml parsing

This commit is contained in:
Luke Pulverenti
2017-02-11 16:16:22 -05:00
parent 825bb32d7b
commit f447098e53
4 changed files with 47 additions and 6 deletions

View File

@@ -48,6 +48,19 @@ namespace MediaBrowser.Controller.LiveTv
return list;
}
public override double? GetDefaultPrimaryImageAspectRatio()
{
if (IsMovie)
{
double value = 2;
value /= 3;
return value;
}
return null;
}
[IgnoreDataMember]
public override SourceType SourceType
{