MUC: Don't create room in response to unavailable presence

This commit is contained in:
Kim Alvefur 2016-11-27 00:10:51 +01:00
parent 1b95aabe89
commit de03c0a6db

View file

@ -159,7 +159,7 @@ function stanza_handler(event)
local bare = jid_bare(stanza.attr.to);
local room = rooms[bare];
if not room then
if stanza.name ~= "presence" then
if stanza.name ~= "presence" or stanza.attr.type ~= nil then
origin.send(st.error_reply(stanza, "cancel", "item-not-found"));
return true;
end