Fix for Erlang R12, that doesn't support: true andalso ok

This commit is contained in:
Badlop 2010-06-15 22:59:53 +02:00
parent 1142cdad1b
commit e27dda3ff1
1 changed files with 8 additions and 4 deletions

View File

@ -646,10 +646,14 @@ route_message(From, To, Packet) ->
case ejabberd_auth:is_user_exists(exmpp_jid:prep_node_as_list(To),
exmpp_jid:prep_domain_as_list(To)) of
true ->
is_privacy_allow(From, To, Packet) andalso
ejabberd_hooks:run(offline_message_hook,
exmpp_jid:prep_domain(To),
[From, To, Packet]);
case is_privacy_allow(From, To, Packet) of
true ->
ejabberd_hooks:run(offline_message_hook,
exmpp_jid:prep_domain(To),
[From, To, Packet]);
false ->
ok
end;
_ ->
Err = exmpp_stanza:reply_with_error(
Packet, 'service-unaivailable'),