Software /
code /
prosody
Changeset
45:363c0af290bc
Small fix for sending stanzas in case of resource binding error
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 04 Oct 2008 02:14:11 +0100 |
parents | 44:80d2ade0fd69 |
children | 46:d6b3f9dbb624 |
files | plugins/mod_legacyauth.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_legacyauth.lua Sat Oct 04 02:12:54 2008 +0100 +++ b/plugins/mod_legacyauth.lua Sat Oct 04 02:14:11 2008 +0100 @@ -38,7 +38,7 @@ reply:tag("error", { code = "401", type = "auth" }) :tag("not-authorized", { xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas" }); end - dispatch_stanza(reply); + send(session, reply); return true; end end