mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-02 00:12:24 +00:00
Use real temp dir instead of cache dir for temp files (#12226)
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user