From f0c6467af8f4f24c574f1e792ff4300c7ef31fd6 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Mon, 31 Mar 2025 21:19:14 +0200 Subject: [PATCH] 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. --- plugins/mod_roster.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/mod_roster.lua b/plugins/mod_roster.lua index 5ffdfe1a1..d167e11aa 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...