aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/muc/muc.lib.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua
index 20e91192..6f21ec3a 100644
--- a/plugins/muc/muc.lib.lua
+++ b/plugins/muc/muc.lib.lua
@@ -683,8 +683,8 @@ function room_mt:process_form(origin, stanza)
local changed = {};
local function handle_option(name, field, allowed)
- local new, err, included = fields[field], errors[field], present[field];
- if not included then return; end
+ if not present[field] then return; end
+ local new = fields[field];
if allowed and not allowed[new] then return; end
if new == self["get_"..name](self) then return; end
changed[name] = true;