Skip to content

Commit

Permalink
chore: ran Prettier & Lint to format code
Browse files Browse the repository at this point in the history
  • Loading branch information
edvinhed committed Jul 2, 2024
1 parent 31a9f15 commit 62badad
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/manifests/utils/configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,9 @@ export const corruptorConfigUtils = function (
// If bitrate is set, filter out segments that doesn't match
params = params.filter(
(config) =>
!config?.br || config?.br === '*' || (config?.br.toString().includes(segmentBitrate.toString())) //Checks if .br contains bitrates that need to be filtered
!config?.br ||
config?.br === '*' ||
config?.br.toString().includes(segmentBitrate.toString()) //Checks if .br contains bitrates that need to be filtered
);

// Replace relative sequence numbers with absolute ones
Expand Down

0 comments on commit 62badad

Please sign in to comment.