Merge pull request #2484 from netdata/fix_url_encode

Fixing request.fullpath URL encoding
This commit is contained in:
Dmitriy Zaporozhets 2013-01-09 00:35:32 -08:00
commit 0d5c6a48be
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ module ExtractsPath
request.format = :atom
end
path = request.fullpath.dup
path = CGI::unescape(request.fullpath.dup)
@ref, @path = extract_ref(path)