diff options
| author | JPVenson <github@jpb.email> | 2025-04-26 18:30:25 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-26 09:30:25 -0600 |
| commit | 8ee358de2ca956d22c14f28c3783ba99acd87a32 (patch) | |
| tree | 8127a03e3ef0b7b2a19a51781ec809ba2ce66216 /Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs | |
| parent | df5671263fc8370ae17b7a5d53f06a86de5cbc93 (diff) | |
Check for path overlaps (#12832)
Diffstat (limited to 'Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs b/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs index 9bc3a0204..81ef0e5f9 100644 --- a/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs +++ b/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs @@ -227,6 +227,7 @@ namespace Emby.Server.Implementations.AppBase Logger.LogInformation("Setting cache path: {Path}", cachePath); ((BaseApplicationPaths)CommonApplicationPaths).CachePath = cachePath; + CommonApplicationPaths.CreateAndCheckMarker(((BaseApplicationPaths)CommonApplicationPaths).CachePath, "cache"); } /// <summary> |
