Minor edit, and added a TODO

This commit is contained in:
Waqas Hussain 2008-10-22 21:18:50 +05:00
parent 7f7444f62b
commit 2a2956ef53

View file

@ -4,7 +4,8 @@ local match = string.match;
module "jid"
function split(jid)
if not jid then return nil; end
if not jid then return; end
-- TODO verify JID, and return; if invalid
local node = match(jid, "^([^@]+)@");
local server = (node and match(jid, ".-@([^@/]+)")) or match(jid, "^([^@/]+)");
local resource = match(jid, "/(.+)$");