mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
fix: undefined is not an object on bitrate
This commit is contained in:
committed by
Zoltan Bettenbuk
parent
2544d0a084
commit
955fa1f49f
@@ -117,8 +117,8 @@ class TestConnectionInfo extends Component<Props, State> {
|
||||
this.setState({
|
||||
stats: {
|
||||
bitrate: {
|
||||
download: stats.bitrate.download,
|
||||
upload: stats.bitrate.upload
|
||||
download: stats.bitrate?.download || 0,
|
||||
upload: stats.bitrate?.upload || 0
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user