mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Fix nil concat when non-existant user is probed (another)
This commit is contained in:
parent
b8aca953d6
commit
d45f82770f
1 changed files with 1 additions and 1 deletions
|
@ -198,7 +198,7 @@ function core_route_stanza(origin, stanza)
|
|||
end
|
||||
end
|
||||
else
|
||||
send(origin, st.presence({from=user.."@"..host, to=origin.username.."@"..origin.host, type="unsubscribed"}));
|
||||
send(origin, st.presence({from=user.."@"..host, to=stanza.attr.from, type="unsubscribed"}));
|
||||
end
|
||||
elseif stanza.attr.type == "subscribe" then
|
||||
-- TODO
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue