util.jid: Fix backout

This commit is contained in:
Kim Alvefur 2015-10-02 12:16:47 +02:00
parent d208ade2a7
commit 4408ac9239

View file

@ -36,7 +36,7 @@ local function split(jid)
end
local function bare(jid)
local node, host = _split(jid);
local node, host = split(jid);
if node and host then
return node.."@"..host;
end