mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
Fixing jid.split() for all JIDs
This commit is contained in:
parent
f81b3a5d1f
commit
58d1a65408
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue