Skip to content

Commit

Permalink
fix(sessions_controller): use appropriate URI parser
Browse files Browse the repository at this point in the history
  • Loading branch information
stakach committed Sep 13, 2023
1 parent 0f1ba41 commit 3936e56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/auth/sessions_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def new
continue_uri = details[:continue]

if continue_uri
parsed_uri = URI.parse(continue_uri)
parsed_uri = Addressable::URI.parse(continue_uri)

# we won't set continue to files (except html)
# we 401 here as this redirect is most likely caused by asset protection
Expand Down

0 comments on commit 3936e56

Please sign in to comment.