diff options
author | Kim Alvefur <zash@zash.se> | 2013-05-26 22:58:13 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-05-26 22:58:13 +0200 |
commit | 8072bfb662cdfb331c0d32dbc718751b7602f758 (patch) | |
tree | 7fcf81b4cf555a155dd89823da3618aff5160132 | |
parent | 4a8d033ca18c843418066d7b1d3f0a7a1fc00f42 (diff) | |
download | prosody-8072bfb662cdfb331c0d32dbc718751b7602f758.tar.gz prosody-8072bfb662cdfb331c0d32dbc718751b7602f758.zip |
mod_admin_telnet: Make the muc:create() command complain if the room already exists
-rw-r--r-- | plugins/mod_admin_telnet.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_admin_telnet.lua b/plugins/mod_admin_telnet.lua index 3d149623..d8dd9951 100644 --- a/plugins/mod_admin_telnet.lua +++ b/plugins/mod_admin_telnet.lua @@ -922,6 +922,8 @@ end function def_env.muc:create(room_jid) local room, host = check_muc(room_jid); + if not room then return nil, host end + if hosts[host].modules.muc.rooms[room_jid] then return nil, "Room exists already" end return hosts[host].modules.muc.create_room(room_jid); end |