aboutsummaryrefslogtreecommitdiffstats
path: root/util/jid.lua
diff options
context:
space:
mode:
Diffstat (limited to 'util/jid.lua')
-rw-r--r--util/jid.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/util/jid.lua b/util/jid.lua
index aad579e9..efa79b38 100644
--- a/util/jid.lua
+++ b/util/jid.lua
@@ -5,7 +5,6 @@ module "jid"
function split(jid)
if not jid then return; end
- -- TODO verify JID, and return; if invalid
local node, nodelen = match(jid, "^([^@]+)@()");
local host, hostlen = match(jid, "^([^@/]+)()", nodelen)
if node and not host then return nil, nil, nil; end