소스 검색

update cache path

Luke Pulverenti 9 년 전
부모
커밋
b9f1f38318
1개의 변경된 파일1개의 추가작업 그리고 5개의 파일을 삭제
  1. 1 5
      MediaBrowser.Common.Implementations/Configuration/BaseConfigurationManager.cs

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