Skip to content

Commit

Permalink
Merge pull request #5174 from tomcain/patch-1
Browse files Browse the repository at this point in the history
URL decode Nuget API v2 "next" link when paging version results
  • Loading branch information
jeffwidman authored May 24, 2022
2 parents 50fd547 + 2cd1fb2 commit 357cbc8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def fetch_paginated_v2_nuget_listings(url_details, results = {})

if (link_href = fetch_v2_next_link_href(response.body))
url_details = url_details.dup
url_details[:versions_url] = link_href
url_details[:versions_url] = CGI.unescape(link_href)
fetch_paginated_v2_nuget_listings(url_details, results)
end

Expand Down

0 comments on commit 357cbc8

Please sign in to comment.