mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.jid: Fix parsing of JIDs with no nodepart and an @ in the resourcepart (thanks seth)
This commit is contained in:
parent
0c0140fa2d
commit
c14f4168f2
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue