mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_presence: Remove unnecessary stanza clone call
This commit is contained in:
parent
a9e9c49027
commit
c083a55ca5
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ function handle_normal_presence(origin, stanza)
|
|||
end
|
||||
end
|
||||
for jid, pending_request in pairs(roster[false].pending) do -- resend incoming subscription requests
|
||||
local subscribe = st.clone(st.deserialize(pending_request));
|
||||
local subscribe = st.deserialize(pending_request);
|
||||
subscribe.attr.type, subscribe.attr.from = "subscribe", jid;
|
||||
origin.send(subscribe);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue