File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 77} from '../types' ;
88
99class AvailableOutgoingBitrateIssueDetector implements IssueDetector {
10- #availableOutgoingBitrateTreshhold = 300000 ; // 300 kbit/s
10+ #availableOutgoingBitrateTreshold = 100000 ; // 100 kbit/s
1111
1212 detect ( data : WebRTCStatsParsed ) : IssueDetectorResult {
1313 const issues : IssueDetectorResult = [ ] ;
@@ -39,7 +39,7 @@ class AvailableOutgoingBitrateIssueDetector implements IssueDetector {
3939 return issues ;
4040 }
4141
42- if ( videoStreamsTotalBitrate > 0 && availableOutgoingBitrate < this . #availableOutgoingBitrateTreshhold ) {
42+ if ( videoStreamsTotalBitrate > 0 && availableOutgoingBitrate < this . #availableOutgoingBitrateTreshold ) {
4343 issues . push ( {
4444 type : IssueType . Network ,
4545 reason : IssueReason . OutboundNetworkThroughput ,
You can’t perform that action at this time.
0 commit comments