updated nuget

This commit is contained in:
Luke Pulverenti
2016-06-01 11:21:22 -04:00
parent 900cf09e03
commit df3cd3e2f6
3 changed files with 13 additions and 5 deletions

View File

@@ -148,6 +148,13 @@ namespace MediaBrowser.Providers.Movies
public bool Supports(IHasProviderIds item)
{
// Supports images for tv movies
var tvProgram = item as LiveTvProgram;
if (tvProgram != null && tvProgram.IsMovie)
{
return true;
}
return item is Movie || item is MusicVideo || item is Series || item is Episode || item is Trailer;
}
}