diff options
author | Kim Alvefur <zash@zash.se> | 2015-10-02 12:16:47 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-10-02 12:16:47 +0200 |
commit | 4408ac9239cd42bcb00d5db9e600910f2aeac891 (patch) | |
tree | 126b59599ad10bfc71b97ef0ca0b7c25ddefbb47 /util | |
parent | d208ade2a7afd0b03932cc24103486076ab20a42 (diff) | |
download | prosody-4408ac9239cd42bcb00d5db9e600910f2aeac891.tar.gz prosody-4408ac9239cd42bcb00d5db9e600910f2aeac891.zip |
util.jid: Fix backout
Diffstat (limited to 'util')
-rw-r--r-- | util/jid.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/jid.lua b/util/jid.lua index 4dd7b04d..76155ac7 100644 --- a/util/jid.lua +++ b/util/jid.lua @@ -36,7 +36,7 @@ local function split(jid) end local function bare(jid) - local node, host = _split(jid); + local node, host = split(jid); if node and host then return node.."@"..host; end |