Skip to content

Commit

Permalink
fix: remove call to next_page
Browse files Browse the repository at this point in the history
this would produce a bug for HDF
  • Loading branch information
Thomas committed Mar 21, 2024
1 parent 974c237 commit 8aa1bf1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django_ent/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ def get_cas_client(request):

server_url = BASE_URLS.get(ent, ENT_HDF_BASE_URL).format(uai_number)

next_page = request.get_full_path()
service_url = get_redirect_url(request, next_page)
# next_page = request.get_full_path()
service_url = get_redirect_url(request)

if ent == "CORRELYCE":
client = CASClientCorrelyce(server_url=server_url, service_url=service_url)
Expand Down

0 comments on commit 8aa1bf1

Please sign in to comment.