mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 13:17:38 +03:00
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.
This commit is contained in:
parent
f0042849ba
commit
f0c6467af8
1 changed files with 1 additions and 1 deletions
|
@ -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...
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue