diff --git a/react/features/base/testing/components/TestConnectionInfo.js b/react/features/base/testing/components/TestConnectionInfo.js index 66e1ee9f8..26be10f42 100644 --- a/react/features/base/testing/components/TestConnectionInfo.js +++ b/react/features/base/testing/components/TestConnectionInfo.js @@ -117,8 +117,8 @@ class TestConnectionInfo extends Component { this.setState({ stats: { bitrate: { - download: stats.bitrate.download, - upload: stats.bitrate.upload + download: stats.bitrate?.download || 0, + upload: stats.bitrate?.upload || 0 } } });