mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.jid: Optimize bare
This commit is contained in:
parent
2fc4e2dd51
commit
2042436850
1 changed files with 1 additions and 5 deletions
|
@ -37,11 +37,7 @@ end
|
|||
split = _split;
|
||||
|
||||
function bare(jid)
|
||||
local node, host = _split(jid);
|
||||
if node and host then
|
||||
return node.."@"..host;
|
||||
end
|
||||
return host;
|
||||
return jid and match(jid, "^[^/]+");
|
||||
end
|
||||
|
||||
local function _prepped_split(jid)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue