Open GoogleCodeExporter opened 9 years ago
the line 126 of Rtmp.hx is :
var ping = i.readUInt30();
and the value of ping is never used below
so I've replaced with :
try
{
var ping = i.readUInt30();
}
catch(e : Dynamic){}
and it's worked for me. This is disgusting but working.
If someone have a cleaner / cleaver solution ...
Original comment by corb...@gmail.com
on 27 Sep 2011 at 1:55
It's been already fixed on SVN, by using the following :
var ping = i.readInt32();
Original comment by ncanna...@gmail.com
on 27 Sep 2011 at 1:59
Original issue reported on code.google.com by
mlodzianck
on 14 Jul 2010 at 7:39