Changeset

6892:214a62915368

Merge 0.10->trunk
author Kim Alvefur <zash@zash.se>
date Fri, 02 Oct 2015 12:17:41 +0200
parents 6890:47cd0b4b5544 (current diff) 6891:7f76c77ddcb8 (diff)
children 6905:0e81e3dab896
files
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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