Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix next link bug
  • Loading branch information
mabenedi committed May 11, 2022
commit f5de197ebcaed94767c9dc3b0ca62cf24fd5a51b
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def _obtain_data_from_registry(login_server,
# we should follow the next path indicated in the link header
next_link_path = next_link[(next_link.index('<') + 1):next_link.index('>')]
tokens = next_link_path.split('?', 2)
params = {y[0]: unquote(y[1]) for y in (x.split('=', 2) for x in tokens[1].split('&'))}
params = {y[0]: unquote(y[1]) for y in (x.split('=', 1) for x in tokens[1].split('&'))}
execute_next_http_call = True

return result_list
Expand Down