mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
MUC: Fix traceback when failing to restore a room
When a room exists in the DB but cannot be loaded (e.g. due to max_rooms or a pre-restore handler) restore_room()/get_room_from_jid() returns false.
This commit is contained in:
parent
88962f49f4
commit
42ca023dec
1 changed files with 3 additions and 0 deletions
|
@ -450,6 +450,9 @@ for event_name, method in pairs {
|
|||
else
|
||||
return;
|
||||
end
|
||||
elseif room == false then -- Error loading room
|
||||
origin.send(st.error_reply(stanza, "wait", "resource-constraint"));
|
||||
return true;
|
||||
end
|
||||
return room[method](room, origin, stanza);
|
||||
end, -2)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue