From 3d4a3c9cb8f17357eb71b58313724f440b5e414c Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 23 Feb 2014 15:35:58 -0500 Subject: change cast icon state appropriately --- MediaBrowser.Controller/Entities/Folder.cs | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) (limited to 'MediaBrowser.Controller') diff --git a/MediaBrowser.Controller/Entities/Folder.cs b/MediaBrowser.Controller/Entities/Folder.cs index b56abcc805..e682a0d2ff 100644 --- a/MediaBrowser.Controller/Entities/Folder.cs +++ b/MediaBrowser.Controller/Entities/Folder.cs @@ -375,6 +375,28 @@ namespace MediaBrowser.Controller.Entities } } + private Dictionary GetActualChildrenDictionary() + { + var dictionary = new Dictionary(); + + foreach (var child in ActualChildren) + { + var id = child.Id; + if (dictionary.ContainsKey(id)) + { + Logger.Error( "Found folder containing items with duplicate id. Path: {0}, Child Name: {1}", + Path ?? Name, + child.Path ?? child.Name); + } + else + { + dictionary[id] = child; + } + } + + return dictionary; + } + /// /// Validates the children internal. /// @@ -413,7 +435,7 @@ namespace MediaBrowser.Controller.Entities progress.Report(5); //build a dictionary of the current children we have now by Id so we can compare quickly and easily - var currentChildren = ActualChildren.ToDictionary(i => i.Id); + var currentChildren = GetActualChildrenDictionary(); //create a list for our validated children var newItems = new List(); -- cgit v1.2.3