mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.jid: Remove redundant check from split() (micro-optimization?)
This commit is contained in:
parent
e8d1a6720e
commit
6ae850c963
1 changed files with 1 additions and 2 deletions
|
@ -35,8 +35,7 @@ local function split(jid)
|
|||
if jid == nil then return; end
|
||||
local node, nodepos = match(jid, "^([^@/]+)@()");
|
||||
local host, hostpos = match(jid, "^([^@/]+)()", nodepos);
|
||||
if node ~= nil and host == nil then return nil, nil, nil; end
|
||||
local resource = match(jid, "^/(.+)$", hostpos);
|
||||
local resource = host and match(jid, "^/(.+)$", hostpos);
|
||||
if (host == nil) or ((resource == nil) and #jid >= hostpos) then return nil, nil, nil; end
|
||||
return node, host, resource;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue