diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-12-03 11:46:20 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-12-03 11:46:20 -0500 |
| commit | b9f1f38318527ddc875a8600ac4893e971f6b197 (patch) | |
| tree | e01dbbb7ea8e82fa46fca70d2f86354f5c05c2f4 | |
| parent | 9aea46f82375d0314772fe5e58642b81bbdb6ccf (diff) | |
update cache path
| -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; |
