Changeset

6891:7f76c77ddcb8

util.jid: Fix backout
author Kim Alvefur <zash@zash.se>
date Fri, 02 Oct 2015 12:16:47 +0200
parents 6889:7f7920f2aebf
children 6892:214a62915368 6893:861790282dda
files util/jid.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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