mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
MUC: Don't create room in response to unavailable presence
This commit is contained in:
parent
1b95aabe89
commit
de03c0a6db
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue