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