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.
2 parents 45d071b + 53fa622 commit 8682955Copy full SHA for 8682955
src/ImageSharp.Web.Providers.Azure/Providers/AzureBlobStorageImageProvider.cs
@@ -89,7 +89,7 @@ public async Task<IImageResolver> GetAsync(HttpContext context)
89
// the same prefix are not mixed up.
90
string path = context.Request.Path.Value.TrimStart(SlashChars);
91
int index = path.IndexOfAny(SlashChars);
92
- string nameToMatch = index != -1 ? path.Substring(index) : path;
+ string nameToMatch = index != -1 ? path.Substring(0, index) : path;
93
94
foreach (string key in this.containers.Keys)
95
{
0 commit comments