File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -121,21 +121,26 @@ export default class MissingStreamDataDetector extends BaseIssueDetector {
121
121
return issues ;
122
122
}
123
123
124
- private static mapStatsByTrackId ( items : CommonParsedInboundStreamStats [ ] [ ] ) : Map < string , CommonParsedInboundStreamStats [ ] > {
124
+ private static mapStatsByTrackId (
125
+ items : CommonParsedInboundStreamStats [ ] [ ] ,
126
+ ) : Map < string , CommonParsedInboundStreamStats [ ] > {
125
127
const statsById = new Map < string , CommonParsedInboundStreamStats [ ] > ( ) ;
126
128
items . forEach ( ( inboundItems ) => {
127
129
inboundItems . forEach ( ( inbountItem ) => {
128
130
const accumulatedItems = statsById . get ( inbountItem . track . trackIdentifier ) || [ ] ;
129
131
accumulatedItems . push ( inbountItem ) ;
130
132
statsById . set ( inbountItem . track . trackIdentifier , accumulatedItems ) ;
131
133
} ) ;
132
- } )
134
+ } ) ;
133
135
134
136
return statsById ;
135
137
}
136
138
137
- private static isAllBytesReceivedDidntChange ( bytesReceived : number , inboundItems : CommonParsedInboundStreamStats [ ] ) : boolean {
138
- for ( const inboundItem of inboundItems ) {
139
+ private static isAllBytesReceivedDidntChange (
140
+ bytesReceived : number , inboundItems : CommonParsedInboundStreamStats [ ] ,
141
+ ) : boolean {
142
+ for ( let i = 0 ; i < inboundItems . length ; i ++ ) {
143
+ const inboundItem = inboundItems [ i ] ;
139
144
if ( inboundItem . bytesReceived !== bytesReceived ) {
140
145
return false ;
141
146
}
You can’t perform that action at this time.
0 commit comments