# HG changeset patch # User Kim Alvefur # Date 1537532601 -7200 # Node ID 607b262da853d92024e94b99903491c3e941c69d # Parent 3259653512e762f8170269a30960172d961c6db7 util.jid: Add missing semicolon diff -r 3259653512e7 -r 607b262da853 util/jid.lua --- a/util/jid.lua Mon Sep 17 15:25:47 2018 +0100 +++ b/util/jid.lua Fri Sep 21 14:23:21 2018 +0200 @@ -30,7 +30,7 @@ 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