util.jid: Add missing semicolon

This commit is contained in:
Kim Alvefur 2018-09-21 14:23:21 +02:00
parent 24106955b4
commit dae66b0b3f

View file

@ -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