mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
* src/mod_roster_odbc.erl: Better error handling
* src/web/ejabberd_http_poll.erl: Minor fix SVN Revision: 690
This commit is contained in:
parent
beb3a450f0
commit
e9047f4b31
@ -1,3 +1,9 @@
|
||||
2006-12-05 Alexey Shchepin <alexey@sevcom.net>
|
||||
|
||||
* src/mod_roster_odbc.erl: Better error handling
|
||||
|
||||
* src/web/ejabberd_http_poll.erl: Minor fix
|
||||
|
||||
2006-12-04 Mickael Remond <mickael.remond@process-one.net>
|
||||
|
||||
* src/ejabberd_loglevel.erl: Preliminary dynamic loglevel support.
|
||||
|
@ -702,11 +702,15 @@ get_in_pending_subscriptions(Ls, User, Server) ->
|
||||
end,
|
||||
lists:flatmap(
|
||||
fun(I) ->
|
||||
R = raw_to_record(LServer, I),
|
||||
case R#roster.ask of
|
||||
in -> [R];
|
||||
both -> [R];
|
||||
_ -> []
|
||||
case raw_to_record(LServer, I) of
|
||||
error ->
|
||||
[];
|
||||
R ->
|
||||
case R#roster.ask of
|
||||
in -> [R];
|
||||
both -> [R];
|
||||
_ -> []
|
||||
end
|
||||
end
|
||||
end,
|
||||
Items));
|
||||
|
@ -305,7 +305,7 @@ terminate(Reason, StateName, StateData) ->
|
||||
{Receiver, _Tag} ->
|
||||
Receiver ! {tcp_closed, {http_poll, self()}}
|
||||
end,
|
||||
resend_messages(StateData#state.output),
|
||||
catch resend_messages(StateData#state.output),
|
||||
ok.
|
||||
|
||||
%%%----------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user