removed custom path subfolder setting

This commit is contained in:
Luke Pulverenti
2016-07-04 15:30:12 -04:00
parent 0a5db9f2d7
commit c8e67f6cb1
3 changed files with 1 additions and 12 deletions

View File

@@ -95,13 +95,9 @@ namespace MediaBrowser.Server.Implementations.Configuration
{
metadataPath = GetInternalMetadataPath();
}
else if (Configuration.EnableCustomPathSubFolders)
{
metadataPath = Path.Combine(Configuration.MetadataPath, "metadata");
}
else
{
metadataPath = Configuration.MetadataPath;
metadataPath = Path.Combine(Configuration.MetadataPath, "metadata");
}
((ServerApplicationPaths)ApplicationPaths).InternalMetadataPath = metadataPath;