diff options
author | Kim Alvefur <zash@zash.se> | 2015-04-26 00:07:36 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-04-26 00:07:36 +0200 |
commit | 43702241ec9a8bf74a23c63b5ee2fd6edd49cbe3 (patch) | |
tree | b003c23950a3bb53f56cc0eedaca77b2aaf4bbe0 /plugins/mod_admin_adhoc.lua | |
parent | 1be7952fe226feefa784e1975d23e950323877e3 (diff) | |
parent | 3e6b35b5d49b5f6ec06cb301ba7b4cbce0a75000 (diff) | |
download | prosody-43702241ec9a8bf74a23c63b5ee2fd6edd49cbe3.tar.gz prosody-43702241ec9a8bf74a23c63b5ee2fd6edd49cbe3.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_admin_adhoc.lua')
-rw-r--r-- | plugins/mod_admin_adhoc.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_admin_adhoc.lua b/plugins/mod_admin_adhoc.lua index 405980c2..4fab84bc 100644 --- a/plugins/mod_admin_adhoc.lua +++ b/plugins/mod_admin_adhoc.lua @@ -246,7 +246,7 @@ local get_user_roster_handler = adhoc_simple(get_user_roster_layout, function(fi local query = st.stanza("query", { xmlns = "jabber:iq:roster" }); for jid in pairs(roster) do - if jid ~= "pending" and jid then + if jid then query:tag("item", { jid = jid, subscription = roster[jid].subscription, @@ -299,7 +299,7 @@ local get_user_stats_handler = adhoc_simple(get_user_stats_layout, function(fiel local IPs = ""; local resources = ""; for jid in pairs(roster) do - if jid ~= "pending" and jid then + if jid then rostersize = rostersize + 1; end end |