aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2025-03-31 21:23:35 +0200
committerKim Alvefur <zash@zash.se>2025-03-31 21:23:35 +0200
commitd4af16441d839620e400eb79dc281085ee4ca096 (patch)
tree41ca54a792de193bd3618318e59af588c65c0249 /plugins
parent9f728624b290966f40e0f0019e7022da493ca5c8 (diff)
parentf0c6467af8f4f24c574f1e792ff4300c7ef31fd6 (diff)
downloadprosody-d4af16441d839620e400eb79dc281085ee4ca096.tar.gz
prosody-d4af16441d839620e400eb79dc281085ee4ca096.zip
Merge 13.0->trunk
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_roster.lua2
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...