Merge 0.10->trunk
authorKim Alvefur <zash@zash.se>
Fri, 02 Oct 2015 12:17:41 +0200
changeset 6895 214a62915368
parent 6893 47cd0b4b5544 (current diff)
parent 6894 7f76c77ddcb8 (diff)
child 6908 0e81e3dab896
Merge 0.10->trunk
--- a/util/jid.lua	Fri Oct 02 12:13:32 2015 +0200
+++ b/util/jid.lua	Fri Oct 02 12:17:41 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