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 f800d42 commit 6f1f967Copy full SHA for 6f1f967
src/ImageSharp.Web/Providers/FileProviderImageProvider.cs
@@ -55,7 +55,7 @@ public virtual bool IsValidRequest(HttpContext context)
55
/// <inheritdoc/>
56
public Task<IImageResolver> GetAsync(HttpContext context)
57
{
58
- IFileInfo fileInfo = this.fileProvider.GetFileInfo(WebUtility.UrlDecode(context.Request.Path));
+ IFileInfo fileInfo = this.fileProvider.GetFileInfo(context.Request.Path.Value);
59
if (!fileInfo.Exists)
60
61
return Task.FromResult<IImageResolver>(null);
0 commit comments