diff options
author | Kim Alvefur <zash@zash.se> | 2018-07-07 17:59:15 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-07-07 17:59:15 +0200 |
commit | 29616c0557046fca2c421364a297357221660864 (patch) | |
tree | 168181ab534c27d6730aceef784709edfaf038e7 | |
parent | 299cca0b3f3823f9928f46275b96f7858a77b3c3 (diff) | |
download | prosody-29616c0557046fca2c421364a297357221660864.tar.gz prosody-29616c0557046fca2c421364a297357221660864.zip |
MUC: Remove empty statement [luacheck]
-rw-r--r-- | plugins/muc/name.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/name.lib.lua b/plugins/muc/name.lib.lua index 1449c1be..38d7b27e 100644 --- a/plugins/muc/name.lib.lua +++ b/plugins/muc/name.lib.lua @@ -20,7 +20,7 @@ local function set_name(room, name) return true; end -local function insert_name_into_form(event); +local function insert_name_into_form(event) table.insert(event.form, { name = "muc#roomconfig_roomname"; type = "text-single"; |