mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.datamanager: Shorter pattern
This commit is contained in:
parent
f0bd3ec403
commit
f36fed39e8
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ do
|
|||
local urlcodes = setmetatable({}, { __index = function (t, k) t[k] = char(tonumber(k, 16)); return t[k]; end });
|
||||
|
||||
decode = function (s)
|
||||
return s and (s:gsub("%%([a-fA-F0-9][a-fA-F0-9])", urlcodes));
|
||||
return s and (s:gsub("%%(%x%x)", urlcodes));
|
||||
end
|
||||
|
||||
encode = function (s)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue