mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
mod_admin_telnet: Fix inverted boolean logic
This commit is contained in:
parent
216ded22c8
commit
db6bac3d85
1 changed files with 1 additions and 1 deletions
|
@ -958,7 +958,7 @@ function def_env.user:delete(jid)
|
|||
local username, host = jid_split(jid);
|
||||
if not hosts[host] then
|
||||
return nil, "No such host: "..host;
|
||||
elseif um.user_exists(username, host) then
|
||||
elseif not um.user_exists(username, host) then
|
||||
return nil, "No such user";
|
||||
end
|
||||
local ok, err = um.delete_user(username, host);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue