X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;ds=sidebyside;f=util%2Fjid.lua;h=76155ac70f81d7118693ab6f8bfe8d7116196b20;hb=544e05fb68f869526b71194c3bed3edd7311f3fe;hp=4dd7b04d4d3087985985744b48978e7799d27097;hpb=190760baa6ef113efd61425627baa0b3e9f5f7cf;p=prosody.git 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