Twilio-video.js: Firefox RemoteTrackStats is Empty

Created on 8 May 2018  路  3Comments  路  Source: twilio/twilio-video.js

  • [ x ] I have verified that the issue occurs with the latest twilio-video.js release and is not marked as a known issue in the CHANGELOG.md.
  • [ x ] I reviewed the Common Issues and open GitHub issues and verified that this report represents a potentially new issue.
  • [ x ] I verified that the Quickstart application works in my environment.

Code to reproduce the issue:

  1. Using the Quickstart Example.
  2. Join 2 users to a single room.
  3. After both have joined, using Firefox open console and call room GetStats
    window.room.getStats()

Note* Chrome works as expected.

Expected behavior:

{
  localAudioTrackStats: [LocalAudioTrackStats]
  localVideoTrackStats: [LocalVideoTrackStats]
  peerConnectionId: "foobar"
  remoteAudioTrackStats:[RemoteAudioTrackStats]
  remoteVideoTrackStats:[RemoteVideoTrackStats]
}

Actual behavior:

{
  localAudioTrackStats: [LocalAudioTrackStats]
  localVideoTrackStats: [LocalVideoTrackStats]
  peerConnectionId: "foobar"
  remoteAudioTrackStats: [],
  remoteVideoTrackStats: []
}

Software versions:

  • [ x ] Browser(s): FireFox
  • [ x ] Operating System: OSX
  • [ x ] twilio-video.js: 1.8.0
  • [ x ] Third-party libraries (e.g., Angular, React, etc.): React
Firefox bug

All 3 comments

Thanks, I was able to reproduce. We will work on fixing it. cc @manjeshbhargav

Tackling in this upcoming sprint as JSDK-1927

This was fixed in 1.10.0

Was this page helpful?
0 / 5 - 0 ratings