update hdhomerun model info caching

This commit is contained in:
Luke Pulverenti
2017-03-16 13:21:24 -04:00
parent 9dd5dcc4bc
commit 44a4e662ac
3 changed files with 14 additions and 6 deletions

View File

@@ -464,10 +464,9 @@ namespace MediaBrowser.XbmcMetadata.Parsers
if (!string.IsNullOrWhiteSpace(val))
{
item.ProductionLocations = val.Split('/')
item.ProductionLocations.AddRange(val.Split('/')
.Select(i => i.Trim())
.Where(i => !string.IsNullOrWhiteSpace(i))
.ToList();
.Where(i => !string.IsNullOrWhiteSpace(i)));
}
break;
}