Skip to content

Commit

Permalink
Fixing query param issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiehewitt15 committed Sep 6, 2023
1 parent d189673 commit 15d5ce7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/oceandbs/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -714,8 +714,8 @@ def get(self, request):
'page': page,
'pageSize': pageSize,
'userAddress': userAddress,
'nonce': params['nonce'],
'signature': params['signature'],
'nonce': params['nonce'][0],
'signature': params['signature'][0],
}
absolute_url = urljoin(storage.url, f'getHistory?{urlencode(query_params)}')
response = requests.get(absolute_url)
Expand Down

0 comments on commit 15d5ce7

Please sign in to comment.