Bugfix - Imagesharp cache folder is not relative to root but to the wwwroot. "~" is not replaced with root
This commit is contained in:
@@ -10,6 +10,6 @@ namespace Umbraco.Core.Configuration.Models
|
||||
|
||||
public uint CachedNameLength { get; set; } = 8;
|
||||
|
||||
public string CacheFolder { get; set; } = Path.Combine("~", "Umbraco", "Cache");
|
||||
public string CacheFolder { get; set; } = Path.Combine("..", "Umbraco", "MediaCache");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user