display new fields on person page

This commit is contained in:
Luke Pulverenti
2013-04-12 14:22:40 -04:00
parent b789550a56
commit b25fd4296c
6 changed files with 16 additions and 12 deletions

View File

@@ -538,8 +538,12 @@ namespace MediaBrowser.Controller.Entities
var validChildren = new ConcurrentBag<Tuple<BaseItem, bool>>();
cancellationToken.ThrowIfCancellationRequested();
Parallel.ForEach(nonCachedChildren, child =>
var options = new ParallelOptions
{
};
Parallel.ForEach(nonCachedChildren, options, child =>
{
BaseItem currentChild;