We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70dc8ad commit 3a639adCopy full SHA for 3a639ad
1 file changed
src/ImageSharp.Web/Caching/PhysicalFileSystemCache.cs
@@ -84,7 +84,7 @@ internal static string GetCacheRoot(PhysicalFileSystemCacheOptions cacheOptions,
84
/// <inheritdoc/>
85
public Task<IImageCacheResolver> GetAsync(string key)
86
{
87
- string path = ToFilePath(key, this.cacheFolderDepth);
+ string path = Path.Combine(this.cacheRootPath, ToFilePath(key, this.cacheFolderDepth));
88
89
var metaFileInfo = new FileInfo(this.ToMetaDataFilePath(path));
90
if (!metaFileInfo.Exists)
0 commit comments