Closed GoogleCodeExporter closed 9 years ago
Good find! I will take a look at this over the weekend!
Original comment by joshuadmorris@gmail.com
on 14 Nov 2011 at 3:11
Sorry for the delay, the holidays are playing havoc with my schedule.
Original comment by joshuadmorris@gmail.com
on 2 Dec 2011 at 1:21
Thanks, no worries :)
I just took a look at your changes, and looks like you may have missed one in
WebsocketConnection.java, line 709-731:
Currently the code looks like:
if ( !isClosing() || aFragment.getOpCode() == MessageOpCode.CLOSE )
{
...
}
else if ( aFragment.getOpCode() == MessageOpCode.CLOSE )
{
...
}
The if statement (on ln:709) will need to be changed to:
if ( !isClosing() )
otherwise the else if statement won't ever get called.
Thanks again.
Original comment by jazzake...@gmail.com
on 2 Dec 2011 at 1:44
*Smacks Forehead* OOPS! Good catch!
Original comment by joshuadmorris@gmail.com
on 6 Dec 2011 at 4:03
No worries :)
Original comment by jazzake...@gmail.com
on 7 Dec 2011 at 2:21
Fixed and checked into trunk.
Original comment by joshuadmorris@gmail.com
on 30 Jan 2012 at 10:11
Original comment by joshuadmorris@gmail.com
on 31 Jan 2012 at 6:32
Original issue reported on code.google.com by
jazzake...@gmail.com
on 1 Nov 2011 at 6:24