# HG changeset patch # User Kim Alvefur # Date 1443781007 -7200 # Node ID 7f76c77ddcb885260bbf3cb379d683bcf2b808e3 # Parent 7f7920f2aebf8040375c3f88ed6ad4383ed40ed6 util.jid: Fix backout diff -r 7f7920f2aebf -r 7f76c77ddcb8 util/jid.lua --- 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