mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Removed: Unnecessary check in mod_roster. session.roster is guaranteed to be available for "c2s" session type.
This commit is contained in:
parent
2afc5cdef0
commit
99d8d3327b
1 changed files with 0 additions and 8 deletions
|
@ -5,14 +5,6 @@ local send = require "core.sessionmanager".send_to_session
|
|||
add_iq_handler("c2s", "jabber:iq:roster",
|
||||
function (session, stanza)
|
||||
if stanza.attr.type == "get" then
|
||||
session.roster = session.roster or rostermanager.getroster(session.username, session.host);
|
||||
if session.roster == false then
|
||||
send(session, st.reply(stanza)
|
||||
:tag("error", { type = "wait" })
|
||||
:tag("internal-server-error", { xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas"}));
|
||||
return true;
|
||||
else session.roster = session.roster or {};
|
||||
end
|
||||
local roster = st.reply(stanza)
|
||||
:query("jabber:iq:roster");
|
||||
for jid in pairs(session.roster) do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue