update components

This commit is contained in:
Luke Pulverenti
2015-11-20 19:12:44 -05:00
parent 625a089737
commit c4fa6a28db
7 changed files with 3 additions and 33 deletions

View File

@@ -174,13 +174,9 @@ namespace MediaBrowser.Common.Implementations.Configuration
{
cachePath = null;
}
else if (CommonConfiguration.EnableCustomPathSubFolders)
{
cachePath = Path.Combine(CommonConfiguration.CachePath, "cache");
}
else
{
cachePath = CommonConfiguration.CachePath;
cachePath = Path.Combine(CommonConfiguration.CachePath, "cache");
}
((BaseApplicationPaths)CommonApplicationPaths).CachePath = cachePath;