util/jid.lua
changeset 6894 7f76c77ddcb8
parent 6892 7f7920f2aebf
child 7299 1859e07ae082
--- a/util/jid.lua	Fri Oct 02 12:12:24 2015 +0200
+++ b/util/jid.lua	Fri Oct 02 12:16:47 2015 +0200
@@ -36,7 +36,7 @@
 end
 
 local function bare(jid)
-	local node, host = _split(jid);
+	local node, host = split(jid);
 	if node and host then
 		return node.."@"..host;
 	end