mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.jid: Add missing semicolon
This commit is contained in:
parent
24106955b4
commit
dae66b0b3f
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ local _ENV = nil;
|
|||
local function split(jid)
|
||||
if not jid then return; end
|
||||
local node, nodepos = match(jid, "^([^@/]+)@()");
|
||||
local host, hostpos = match(jid, "^([^@/]+)()", nodepos)
|
||||
local host, hostpos = match(jid, "^([^@/]+)()", nodepos);
|
||||
if node and not host then return nil, nil, nil; end
|
||||
local resource = match(jid, "^/(.+)$", hostpos);
|
||||
if (not host) or ((not resource) and #jid >= hostpos) then return nil, nil, nil; end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue