Added initial implementation of the metadata provider network, along with the first few providers

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-08-19 11:58:35 -04:00
parent 803ce0968e
commit d794eecec4
18 changed files with 492 additions and 284 deletions

View File

@@ -88,7 +88,7 @@ namespace MediaBrowser.Controller.IO
private void ProcessPathChanges(IEnumerable<string> paths)
{
List<BaseItem> itemsToRefresh = new List<BaseItem>();
/*List<BaseItem> itemsToRefresh = new List<BaseItem>();
foreach (BaseItem item in paths.Select(p => GetAffectedBaseItem(p)))
{
@@ -113,7 +113,7 @@ namespace MediaBrowser.Controller.IO
{
Kernel.Instance.ReloadItem(itemsToRefresh[i]);
});
}
}*/
}
private BaseItem GetAffectedBaseItem(string path)