mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Minor edit, and added a TODO
This commit is contained in:
parent
7f7444f62b
commit
2a2956ef53
1 changed files with 2 additions and 1 deletions
|
@ -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, "/(.+)$");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue