fix: run 'component_send_packet' hook in global mode

This commit is contained in:
Pouriya Jahanbakhsh 2018-03-30 23:19:33 +04:30
parent 7b3d26992b
commit e17a16a300
1 changed files with 2 additions and 2 deletions

View File

@ -185,13 +185,13 @@ handle_auth_failure(_, Mech, Reason,
Reason]),
State.
handle_authenticated_packet(Pkt0, #{server := Server, ip := {IP, _}, lang := Lang} = State)
handle_authenticated_packet(Pkt0, #{ip := {IP, _}, lang := Lang} = State)
when ?is_stanza(Pkt0) ->
Pkt = xmpp:put_meta(Pkt0, ip, IP),
From = xmpp:get_from(Pkt),
case check_from(From, State) of
true ->
{Pkt2, State2} = ejabberd_hooks:run_fold(component_send_packet, Server, {Pkt, State}, []),
{Pkt2, State2} = ejabberd_hooks:run_fold(component_send_packet, {Pkt, State}, []),
case Pkt2 of
drop ->
ok;