aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-06-04 19:35:41 +0200
committerKim Alvefur <zash@zash.se>2013-06-04 19:35:41 +0200
commit6b543a641650cf643cbc18f087965e6841935b4a (patch)
tree7b7bb2e9cbfc3ba7404f9e40d919c2d440f50541
parent10338aeb7f5b87daa50b3ccc5b3fd13f678a1442 (diff)
downloadprosody-6b543a641650cf643cbc18f087965e6841935b4a.tar.gz
prosody-6b543a641650cf643cbc18f087965e6841935b4a.zip
mod_admin_telnet: Fix inverted boolean logic
-rw-r--r--plugins/mod_admin_telnet.lua2
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);