Browse Source

update cache path

Luke Pulverenti 9 years ago
parent
commit
b9f1f38318

+ 1 - 5
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;