fixes #334 - Server side indexing routine is falling down

pull/702/head
Luke Pulverenti 11 years ago
parent bf8da46f17
commit a2557d7981

@ -1,6 +1,7 @@
using System; using MediaBrowser.Common.Extensions;
using MediaBrowser.Common.Extensions;
using MediaBrowser.Model.Entities; using MediaBrowser.Model.Entities;
using MoreLinq;
using System;
using System.Collections.Concurrent; using System.Collections.Concurrent;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
@ -135,7 +136,7 @@ namespace MediaBrowser.Controller.Entities
// Now - since we built the index grouping from the bottom up - we now need to properly set Parents from the top down // Now - since we built the index grouping from the bottom up - we now need to properly set Parents from the top down
SetParents(this, kids.OfType<IndexFolder>()); SetParents(this, kids.OfType<IndexFolder>());
return new ConcurrentDictionary<Guid,BaseItem>(kids.ToDictionary(i => i.Id)); return new ConcurrentDictionary<Guid, BaseItem>(kids.DistinctBy(i => i.Id).ToDictionary(i => i.Id));
} }
/// <summary> /// <summary>

Loading…
Cancel
Save