aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/AppBase
diff options
context:
space:
mode:
authorJoshua Boniface <joshua@boniface.me>2019-02-09 19:14:34 -0500
committerJoshua Boniface <joshua@boniface.me>2019-02-09 19:14:34 -0500
commit382b8bb509bbce34354a5d667c755b91d52c4fa4 (patch)
treef8882713cba5d782b6aff625d0c10ba108963e19 /Emby.Server.Implementations/AppBase
parent74d2698c5fd7f70b2409afc5be0e9825c5edeeda (diff)
Use Path.Combine
Diffstat (limited to 'Emby.Server.Implementations/AppBase')
-rw-r--r--Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs b/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs
index cf07cb1ec..5feac1adf 100644
--- a/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs
+++ b/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
{