Merge pull request #2484 from netdata/fix_url_encode
Fixing request.fullpath URL encoding
This commit is contained in:
commit
0d5c6a48be
|
@ -108,7 +108,7 @@ module ExtractsPath
|
||||||
request.format = :atom
|
request.format = :atom
|
||||||
end
|
end
|
||||||
|
|
||||||
path = request.fullpath.dup
|
path = CGI::unescape(request.fullpath.dup)
|
||||||
|
|
||||||
@ref, @path = extract_ref(path)
|
@ref, @path = extract_ref(path)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue