diff options
author | Kim Alvefur <zash@zash.se> | 2015-10-02 12:12:24 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-10-02 12:12:24 +0200 |
commit | d208ade2a7afd0b03932cc24103486076ab20a42 (patch) | |
tree | ac97d373605b3a5630d25791848a39dd7608d071 | |
parent | 23fa3312e7d966a9205274189eb6b5d0d793c3be (diff) | |
download | prosody-d208ade2a7afd0b03932cc24103486076ab20a42.tar.gz prosody-d208ade2a7afd0b03932cc24103486076ab20a42.zip |
Backout 7e820979fd9b (broke tests)
-rw-r--r-- | util/jid.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/util/jid.lua b/util/jid.lua index 696f51d8..4dd7b04d 100644 --- a/util/jid.lua +++ b/util/jid.lua @@ -36,7 +36,11 @@ local function split(jid) end local function bare(jid) - return jid and match(jid, "^[^/]+"); + local node, host = _split(jid); + if node and host then + return node.."@"..host; + end + return host; end local function prepped_split(jid) |