We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee54c8d commit fb3bdc3Copy full SHA for fb3bdc3
src/webrtc/stats/summaryStatsReporter.ts
@@ -45,9 +45,7 @@ export class SummaryStatsReporter {
45
});
46
const decimalPlaces = 5;
47
const report = {
48
- percentageReceivedMedia: Number(
49
- (summaryCounter.receivedMedia / summaryTotalCount).toFixed(decimalPlaces),
50
- ),
+ percentageReceivedMedia: Number((summaryCounter.receivedMedia / summaryTotalCount).toFixed(decimalPlaces)),
51
percentageReceivedVideoMedia: Number(
52
(summaryCounter.receivedVideo / summaryTotalCount).toFixed(decimalPlaces),
53
),
0 commit comments