Use real temp dir instead of cache dir for temp files (#12226)

This commit is contained in:
Bond-009
2024-07-15 14:44:14 +02:00
committed by GitHub
parent 5e840c1db6
commit c666f9d050
10 changed files with 22 additions and 22 deletions

View File

@@ -104,6 +104,6 @@ namespace Emby.Server.Implementations.AppBase
/// Gets the folder path to the temp directory within the cache folder.
/// </summary>
/// <value>The temp directory.</value>
public string TempDirectory => Path.Combine(CachePath, "temp");
public string TempDirectory => Path.Join(Path.GetTempPath(), "jellyfin");
}
}