File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ class InboundNetworkIssueDetector extends BaseIssueDetector {
2525 constructor ( params : InboundNetworkIssueDetectorParams = { } ) {
2626 super ( ) ;
2727 this . #highPacketLossThresholdPct = params . highPacketLossThresholdPct ?? 5 ;
28- this . #highJitterThreshold = params . highJitterThreshold ?? 200 ;
28+ this . #highJitterThreshold = params . highJitterThreshold ?? 0.2 ;
2929 this . #highJitterBufferDelayThresholdMs = params . highJitterBufferDelayThresholdMs ?? 500 ;
3030 this . #highRttThresholdMs = params . highRttThresholdMs ?? 250 ;
3131 }
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ class OutboundNetworkIssueDetector extends BaseIssueDetector {
1919 constructor ( params : OutboundNetworkIssueDetectorParams = { } ) {
2020 super ( ) ;
2121 this . #highPacketLossThresholdPct = params . highPacketLossThresholdPct ?? 5 ;
22- this . #highJitterThreshold = params . highJitterThreshold ?? 200 ;
22+ this . #highJitterThreshold = params . highJitterThreshold ?? 0.2 ;
2323 }
2424
2525 performDetection ( data : WebRTCStatsParsed ) : IssueDetectorResult {
You can’t perform that action at this time.
0 commit comments