Backout 7e820979fd9b (broke tests)

This commit is contained in:
Kim Alvefur 2015-10-02 12:12:24 +02:00
parent 23fa3312e7
commit d208ade2a7

View file

@ -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)