added toggles for metadata settings

This commit is contained in:
Luke Pulverenti
2014-02-10 23:55:01 -05:00
parent cf9ef0e43d
commit 17bf59dfe3
29 changed files with 203 additions and 98 deletions

View File

@@ -25,9 +25,9 @@ namespace MediaBrowser.Providers.BoxSets
new BaseItemXmlParser<BoxSet>(_logger).Fetch(result.Item, path, cancellationToken);
}
protected override FileInfo GetXmlFile(ItemInfo info)
protected override FileInfo GetXmlFile(ItemInfo info, IDirectoryService directoryService)
{
return new FileInfo(Path.Combine(info.Path, "collection.xml"));
return directoryService.GetFile(Path.Combine(info.Path, "collection.xml"));
}
}
}