aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--util/jid.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/jid.lua b/util/jid.lua
index 784d2b64..b1e4131d 100644
--- a/util/jid.lua
+++ b/util/jid.lua
@@ -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, "/(.+)$");