Merge pull request #1731 from softworkz/MetadataMerging

Prioritize metadata merging by preferred language
This commit is contained in:
Luke
2016-09-22 17:58:18 -04:00
committed by GitHub
8 changed files with 99 additions and 18 deletions

View File

@@ -13,13 +13,15 @@ namespace MediaBrowser.Controller.Providers
public MetadataResult()
{
Images = new List<LocalImageInfo>();
ResultLanguage = "en";
}
public List<PersonInfo> People { get; set; }
public bool HasMetadata { get; set; }
public T Item { get; set; }
public string ResultLanguage { get; set; }
public bool QueriedById { get; set; }
public void AddPerson(PersonInfo p)
{
if (People == null)