Fix a bug where we were matching on #iq.type instead of #iq.kind,

resulting in bad-request sent to the client.

PR:		EJABP-1

SVN Revision: 1602
This commit is contained in:
Jean-Sébastien Pédron 2008-10-06 14:56:36 +00:00
parent 1698b8ec04
commit 028a3c2ded
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2008-10-06 Jean-Sébastien Pédron <js.pedron@meetic-corp.com>
* src/ejabberd_sm.erl (process_iq/3): Fix a bug where we were matching
on #iq.type instead of #iq.kind, resulting in bad-request sent to the
client.
2008-10-02 Jean-Sébastien Pédron <js.pedron@meetic-corp.com>
* src/mod_roster_odbc.erl: Fix a bug where a JID represented as a

View File

@ -661,7 +661,7 @@ process_iq(From, To, Packet) ->
Err = exmpp_iq:error(Packet, 'service-unavailable'),
ejabberd_router:route(To, From, Err)
end;
#iq{type = response} ->
#iq{kind = response} ->
ok;
_ ->
Err = exmpp_iq:error(Packet, 'bad-request'),