update people fetching

This commit is contained in:
Luke Pulverenti 2017-01-31 16:20:01 -05:00
parent 44687c2373
commit 88bb75bec4
2 changed files with 12 additions and 2 deletions

View File

@ -271,7 +271,12 @@ namespace MediaBrowser.Providers.Movies
//and the rest from crew
if (movieData.casts != null && movieData.casts.crew != null)
{
var keepTypes = new[] { PersonType.Director, PersonType.Writer, PersonType.Producer };
var keepTypes = new[]
{
PersonType.Director,
PersonType.Writer,
//PersonType.Producer
};
foreach (var person in movieData.casts.crew)
{

View File

@ -167,7 +167,12 @@ namespace MediaBrowser.Providers.TV
//and the rest from crew
if (credits.crew != null)
{
var keepTypes = new[] { PersonType.Director, PersonType.Writer, PersonType.Producer };
var keepTypes = new[]
{
PersonType.Director,
//PersonType.Writer,
//PersonType.Producer
};
foreach (var person in credits.crew)
{