diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-20 19:12:44 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-20 19:12:44 -0500 |
| commit | c4fa6a28dbc67c26b8b387ac7675c619a6600859 (patch) | |
| tree | 815cdbda405e9c9bb21f5a2a6acd09004198c8ef /MediaBrowser.Common.Implementations/Configuration/BaseConfigurationManager.cs | |
| parent | 625a089737af2aecc4025777242bfda8ee47c5bb (diff) | |
update components
Diffstat (limited to 'MediaBrowser.Common.Implementations/Configuration/BaseConfigurationManager.cs')
| -rw-r--r-- | MediaBrowser.Common.Implementations/Configuration/BaseConfigurationManager.cs | 6 |
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; |
