aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/Configuration/BaseConfigurationManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-11-20 19:12:44 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-11-20 19:12:44 -0500
commitc4fa6a28dbc67c26b8b387ac7675c619a6600859 (patch)
tree815cdbda405e9c9bb21f5a2a6acd09004198c8ef /MediaBrowser.Common.Implementations/Configuration/BaseConfigurationManager.cs
parent625a089737af2aecc4025777242bfda8ee47c5bb (diff)
update components
Diffstat (limited to 'MediaBrowser.Common.Implementations/Configuration/BaseConfigurationManager.cs')
-rw-r--r--MediaBrowser.Common.Implementations/Configuration/BaseConfigurationManager.cs6
1 files changed, 1 insertions, 5 deletions
diff --git a/MediaBrowser.Common.Implementations/Configuration/BaseConfigurationManager.cs b/MediaBrowser.Common.Implementations/Configuration/BaseConfigurationManager.cs
index 7bbc1abd7..7f9299ff2 100644
--- a/MediaBrowser.Common.Implementations/Configuration/BaseConfigurationManager.cs
+++ b/MediaBrowser.Common.Implementations/Configuration/BaseConfigurationManager.cs
@@ -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;