diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/jid.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/jid.lua b/util/jid.lua index 37c48193..ec31f180 100644 --- a/util/jid.lua +++ b/util/jid.lua @@ -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 |