implement user ordering of local metadata readers

This commit is contained in:
Luke Pulverenti 2014-02-22 17:41:29 -05:00
parent 6c487993cb
commit 2d0ce724ea

View file

@ -717,6 +717,8 @@ namespace MediaBrowser.Server.Implementations.Library
{
var userRootPath = ConfigurationManager.ApplicationPaths.DefaultUserViewsPath;
Directory.CreateDirectory(userRootPath);
_userRootFolder = RetrieveItem(userRootPath.GetMBId(typeof(UserRootFolder))) as UserRootFolder ??
(UserRootFolder)ResolvePath(new DirectoryInfo(userRootPath));
}