diff options
author | Kim Alvefur <zash@zash.se> | 2013-06-04 19:35:41 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-06-04 19:35:41 +0200 |
commit | e99ff292854f769c8d28c6dce9272d1e054fd088 (patch) | |
tree | 7b7bb2e9cbfc3ba7404f9e40d919c2d440f50541 | |
parent | 3f2cc61c6fdd5e6bab36247cc33f5610bfbcee9c (diff) | |
download | prosody-e99ff292854f769c8d28c6dce9272d1e054fd088.tar.gz prosody-e99ff292854f769c8d28c6dce9272d1e054fd088.zip |
mod_admin_telnet: Fix inverted boolean logic
-rw-r--r-- | plugins/mod_admin_telnet.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_admin_telnet.lua b/plugins/mod_admin_telnet.lua index d8dd9951..5264c21b 100644 --- a/plugins/mod_admin_telnet.lua +++ b/plugins/mod_admin_telnet.lua @@ -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); |