mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
plugins: Use get_option_enum where appropriate
This commit is contained in:
parent
c4abd68e92
commit
a8b0c56f65
5 changed files with 11 additions and 8 deletions
|
@ -85,7 +85,7 @@ function module.add_host(module)
|
|||
end
|
||||
|
||||
if env.connected then
|
||||
local policy = module:get_option_string("component_conflict_resolve", "kick_new");
|
||||
local policy = module:get_option_enum("component_conflict_resolve", "kick_new", "kick_old");
|
||||
if policy == "kick_old" then
|
||||
env.session:close{ condition = "conflict", text = "Replaced by a new connection" };
|
||||
else -- kick_new
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue