Skip to content

Commit

Permalink
fix: revert url decode
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanJosipovic committed Mar 28, 2023
1 parent 3ce794b commit dfa3060
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DockerClient/DockerTagClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ private async Task<List<string>> GetTagsRecursive(string url)

List<string> newTags;

newTags = await GetTagsRecursive($"{(Https ? "https" : "http")}://{Host}{HttpUtility.UrlDecode(pageQuery)}");
newTags = await GetTagsRecursive($"{(Https ? "https" : "http")}://{Host}{pageQuery}");

tags.AddRange(newTags);
}
Expand Down

0 comments on commit dfa3060

Please sign in to comment.