mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.jid: Strip trailing '.' when normalizing hostnames
This commit is contained in:
parent
fa4bdf2950
commit
54824c98f1
1 changed files with 4 additions and 1 deletions
|
@ -8,7 +8,7 @@
|
|||
|
||||
|
||||
|
||||
local match = string.match;
|
||||
local match, sub = string.match, string.sub;
|
||||
local nodeprep = require "util.encodings".stringprep.nodeprep;
|
||||
local nameprep = require "util.encodings".stringprep.nameprep;
|
||||
local resourceprep = require "util.encodings".stringprep.resourceprep;
|
||||
|
@ -47,6 +47,9 @@ end
|
|||
local function _prepped_split(jid)
|
||||
local node, host, resource = _split(jid);
|
||||
if host then
|
||||
if sub(host, -1, -1) == "." then -- Strip empty root label
|
||||
host = sub(host, 1, -2);
|
||||
end
|
||||
host = nameprep(host);
|
||||
if not host then return; end
|
||||
if node then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue