util.jid: Fix parsing of JIDs with no nodepart and an @ in the resourcepart (thanks seth)

This commit is contained in:
Matthew Wild 2010-08-31 00:38:44 +01:00
parent 0c0140fa2d
commit c14f4168f2

View file

@ -17,7 +17,7 @@ module "jid"
local function _split(jid)
if not jid then return; end
local node, nodepos = match(jid, "^([^@]+)@()");
local node, nodepos = match(jid, "^([^@/]+)@()");
local host, hostpos = match(jid, "^([^@/]+)()", nodepos)
if node and not host then return nil, nil, nil; end
local resource = match(jid, "^/(.+)$", hostpos);