diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-06-05 21:36:29 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-06-05 21:36:29 +0100 |
commit | a4eb37148c0ef50dee686ec0ab28d1f6e811fdf0 (patch) | |
tree | 4cf963a78037a15c8c58d330caaea791605c5b09 /plugins | |
parent | 3389da653e5eaff6f8c78a7c56323732cfd6abe3 (diff) | |
parent | 9c877dbe930137f5e4507da798fdd91135e8af9e (diff) | |
download | prosody-a4eb37148c0ef50dee686ec0ab28d1f6e811fdf0.tar.gz prosody-a4eb37148c0ef50dee686ec0ab28d1f6e811fdf0.zip |
Merge 0.9->trunk
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_admin_telnet.lua | 2 | ||||
-rw-r--r-- | plugins/mod_bosh.lua | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/plugins/mod_admin_telnet.lua b/plugins/mod_admin_telnet.lua index 3b8fedbd..ae8ca530 100644 --- a/plugins/mod_admin_telnet.lua +++ b/plugins/mod_admin_telnet.lua @@ -976,7 +976,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); diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua index 0a331f27..03355564 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -284,6 +284,7 @@ function stream_callbacks.streamopened(context, attr) sid = sid; }; if creating_session then + creating_session = nil; body_attr.inactivity = tostring(BOSH_DEFAULT_INACTIVITY); body_attr.polling = tostring(BOSH_DEFAULT_POLLING); body_attr.requests = tostring(BOSH_DEFAULT_REQUESTS); |