浏览代码

Use Path.Combine

Joshua Boniface 6 年之前
父节点
当前提交
382b8bb509
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs

+ 1 - 1
Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs

@@ -178,7 +178,7 @@ namespace Emby.Server.Implementations.AppBase
                 if (string.IsNullOrWhiteSpace(((BaseApplicationPaths)CommonApplicationPaths).CachePath))
                 {
                     // Set cachePath to a default value under ProgramDataPath
-                    cachePath = (((BaseApplicationPaths)CommonApplicationPaths).ProgramDataPath + "/cache");
+                    cachePath = Path.Combine(((BaseApplicationPaths)CommonApplicationPaths).ProgramDataPath, "cache");
                 }
                 else
                 {