mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
net.httpserver: Fix for urlencoding to always produce 2 digits
This commit is contained in:
parent
ef5e994b1f
commit
964ee27096
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ local t_insert, t_concat = table.insert, table.concat;
|
|||
local s_match, s_gmatch = string.match, string.gmatch;
|
||||
local tonumber, tostring, pairs = tonumber, tostring, pairs;
|
||||
|
||||
local urlencode = function (s) return s and (s:gsub("%W", function (c) return string.format("%%%x", c:byte()); end)); end
|
||||
local urlencode = function (s) return s and (s:gsub("%W", function (c) return string.format("%%%02x", c:byte()); end)); end
|
||||
|
||||
local log = require "util.logger".init("httpserver");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue