Open GoogleCodeExporter opened 8 years ago
Can we get an update on this? This is high priority since it is blocking usage
on Firefox. Also seeing this on windows too.
Original comment by oldblue...@gmail.com
on 29 Oct 2013 at 1:44
Hi
I'm also having this error with firefox when the call is terminated.
I'm attaching the console output.
Original comment by cybpe...@gmail.com
on 29 Oct 2013 at 1:57
Attachments:
It looks like the following change in Firefox is breaking SIPml5:
"Unexpose the removeStream function on the Peer Connection object temporarily"
https://bugzilla.mozilla.org/show_bug.cgi?id=844295
SIPml is calling removeStream when terminating a call, which results in an
error.
In the SIPml5 source I replaced:
this.o_pc.removeStream(this.o_local_stream);
with:
if (SIPml.getNavigatorFriendlyName() !== "firefox")
this.o_pc.removeStream(this.o_local_stream);
Hope this helps.
Original comment by hoffmann...@gmail.com
on 4 Nov 2013 at 2:39
Thanks a lot. In my case the error is gone when call is terminated.
Original comment by cybpe...@gmail.com
on 5 Nov 2013 at 12:54
We also removed the calls to removeStream() when working with Firefox, which
allowed proper call termination.
Original comment by michelle...@gmail.com
on 20 Dec 2013 at 3:56
Original issue reported on code.google.com by
jmcclell...@gmail.com
on 1 Sep 2013 at 8:35