From 99d8d3327b98e0a15322783abc1287e5300297ac Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Wed, 8 Oct 2008 20:38:05 +0500 Subject: Removed: Unnecessary check in mod_roster. session.roster is guaranteed to be available for "c2s" session type. --- plugins/mod_roster.lua | 8 -------- 1 file changed, 8 deletions(-) diff --git a/plugins/mod_roster.lua b/plugins/mod_roster.lua index 8b4a3a0a..962c6c70 100644 --- a/plugins/mod_roster.lua +++ b/plugins/mod_roster.lua @@ -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 -- cgit v1.2.3