+2006-06-15 Mickael Remond <mickael.remond@process-one.net>
+
+ * src/web/ejabberd_http_poll.erl: Bugfix: using tuple instead of a Pid
+ to send Erlang messages in a rarely used case.
+
2006-06-13 Mickael Remond <mickael.remond@process-one.net>
* src/ejabberd_auth.erl: Fixed broken multiple connection with
"" ->
{reply, ok, StateName, StateData#state{waiting_input = From}};
Input ->
- From ! {tcp, {http_poll, self()}, list_to_binary(Input)},
+ {Receiver, _Tag} = From,
+ Receiver ! {tcp, {http_poll, self()}, list_to_binary(Input)},
{reply, ok, StateName, StateData#state{input = "",
waiting_input = false,
last_receiver = From