diff options
author | Kim Alvefur <zash@zash.se> | 2025-03-31 21:19:14 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2025-03-31 21:19:14 +0200 |
commit | f0c6467af8f4f24c574f1e792ff4300c7ef31fd6 (patch) | |
tree | 41ca54a792de193bd3618318e59af588c65c0249 /plugins | |
parent | f0042849ba7629edd6404179c59fff7b69536d44 (diff) | |
download | prosody-f0c6467af8f4f24c574f1e792ff4300c7ef31fd6.tar.gz prosody-f0c6467af8f4f24c574f1e792ff4300c7ef31fd6.zip |
mod_roster: Fix shell commands when a component is involved (fixes #1908)
Prevent attempt to load rosters on Components since they do not have
users or rosters.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_roster.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_roster.lua b/plugins/mod_roster.lua index 5ffdfe1a..d167e11a 100644 --- a/plugins/mod_roster.lua +++ b/plugins/mod_roster.lua @@ -162,7 +162,7 @@ function subscribe(user_jid, contact_jid) rostermanager.set_contact_pending_out(user_username, user_host, contact_jid); end - if prosody.hosts[contact_host] then -- Sending to a local host? + if prosody.hosts[contact_host] and prosody.hosts[contact_host].type == "local" then -- Sending to a local host? -- Update contact's roster to say subscription request is pending... rostermanager.set_contact_pending_in(contact_username, contact_host, user_jid); -- Update contact's roster to say subscription request approved... |