Fixing jid.split() for all JIDs

This commit is contained in:
Matthew Wild 2008-09-27 19:17:40 +01:00
parent f81b3a5d1f
commit 58d1a65408

View file

@ -4,5 +4,8 @@ local match = string.match;
module "jid"
function split(jid)
return match(jid, "^([^@]+)@([^/]+)/?(.*)$");
local node = match(jid, "^([^@]+)@");
local server = (node and match(jid, ".-@([^@/]+)")) or match(jid, "^([^@/]+)");
local resource = match(jid, "/(.+)$");
return node, server, resource;
end