-
Notifications
You must be signed in to change notification settings - Fork 160
Open
Labels
enhancementNew feature or requestNew feature or request
Description
I have an URL like this: https://www.example.com/path?query_param=N%2CU. absolute_url method:
kimuraframework/lib/kimurai/base_helper.rb
Lines 5 to 8 in 5122179
| def absolute_url(url, base:) | |
| return unless url | |
| URI.join(base, URI.escape(url)).to_s | |
| end |
escapes it so it becomes https://www.example.com/path?query_param=N%252CU, corrupting the URL and breaking the spider link following. What about adding an argument to absolute_url in order to skip escaping?
rupurt
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request