Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
5e709a15
Commit
5e709a15
authored
Apr 21, 2021
by
Kenneth Chu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use RFC3986_PARSER when creating a new URI
Changelog: changed
parent
f293b14a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/api/helpers/related_resources_helpers.rb
lib/api/helpers/related_resources_helpers.rb
+2
-2
No files found.
lib/api/helpers/related_resources_helpers.rb
View file @
5e709a15
...
...
@@ -23,10 +23,10 @@ module API
# Using a blank component at the beginning of the join we ensure
# that the resulted path will start with '/'. If the resulted path
# does not start with '/', URI::Generic#
build
will fail
# does not start with '/', URI::Generic#
new
will fail
path_with_script_name
=
File
.
join
(
''
,
[
script_name
,
path
].
select
(
&
:present?
))
URI
::
Generic
.
build
(
scheme:
protocol
,
host:
host
,
port:
port
,
path:
path_with_script_nam
e
).
to_s
URI
::
Generic
.
new
(
protocol
,
nil
,
host
,
port
,
nil
,
path_with_script_name
,
nil
,
nil
,
nil
,
URI
::
RFC3986_PARSER
,
tru
e
).
to_s
end
private
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment