Software /
code /
prosody
Changeset
315:4df26c981728
Fixed servermanager to use session.send for sending stanzas
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Sun, 16 Nov 2008 05:02:15 +0500 |
parents | 314:851f271d25b0 |
children | 316:13e2bd256a20 |
files | core/servermanager.lua |
diffstat | 1 files changed, 2 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/core/servermanager.lua Sun Nov 16 04:52:11 2008 +0500 +++ b/core/servermanager.lua Sun Nov 16 05:02:15 2008 +0500 @@ -1,6 +1,5 @@ local st = require "util.stanza"; -local send = require "core.sessionmanager".send_to_session; local xmlns_stanzas ='urn:ietf:params:xml:ns:xmpp-stanzas'; require "modulemanager" @@ -11,10 +10,10 @@ if not modulemanager.handle_stanza(origin, stanza) then if stanza.name == "iq" then if stanza.attr.type ~= "result" and stanza.attr.type ~= "error" then - send(origin, st.error_reply(stanza, "cancel", "service-unavailable")); + origin.send(st.error_reply(stanza, "cancel", "service-unavailable")); end elseif stanza.name == "message" then - send(origin, st.error_reply(stanza, "cancel", "service-unavailable")); + origin.send(st.error_reply(stanza, "cancel", "service-unavailable")); elseif stanza.name ~= "presence" then error("Unknown stanza"); end