aboutsummaryrefslogtreecommitdiffstats
path: root/util/jid.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-08-07 17:20:51 +0200
committerKim Alvefur <zash@zash.se>2014-08-07 17:20:51 +0200
commit16dbe1e35096f1cc4f25d8c161a58ee394e2bdac (patch)
tree01b2733683a9a8c4edf7c6ab7d4d91d3a0573a56 /util/jid.lua
parent4a1babcbea83054d9452ed470a0caccd58f1e377 (diff)
downloadprosody-16dbe1e35096f1cc4f25d8c161a58ee394e2bdac.tar.gz
prosody-16dbe1e35096f1cc4f25d8c161a58ee394e2bdac.zip
util.jid: Return early in join on invalid jids
Diffstat (limited to 'util/jid.lua')
-rw-r--r--util/jid.lua11
1 files changed, 5 insertions, 6 deletions
diff --git a/util/jid.lua b/util/jid.lua
index 08e63335..5db3d1f0 100644
--- a/util/jid.lua
+++ b/util/jid.lua
@@ -79,16 +79,15 @@ function prep(jid)
end
function join(node, host, resource)
- if node and host and resource then
+ if not host then return end -- Invalid JID
+ if node and resource then
return node.."@"..host.."/"..resource;
- elseif node and host then
+ elseif node then
return node.."@"..host;
- elseif host and resource then
+ elseif resource then
return host.."/"..resource;
- elseif host then
- return host;
end
- return nil; -- Invalid JID
+ return host;
end
function compare(jid, acl)