Small fix for sending stanzas in case of resource binding error

This commit is contained in:
Matthew Wild 2008-10-04 02:14:11 +01:00
parent f6924a64c0
commit c98dd482df

View file

@ -38,7 +38,7 @@ add_iq_handler("c2s_unauthed", "jabber:iq:auth",
reply:tag("error", { code = "401", type = "auth" }) reply:tag("error", { code = "401", type = "auth" })
:tag("not-authorized", { xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas" }); :tag("not-authorized", { xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas" });
end end
dispatch_stanza(reply); send(session, reply);
return true; return true;
end end
end end