Skip to content

Commit

Permalink
Fix lint length error
Browse files Browse the repository at this point in the history
  • Loading branch information
HaveAGitGat committed Sep 25, 2023
1 parent 8793962 commit 2a76f29
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Community/Tdarr_Plugin_MC93_Migz1Remux.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,12 @@ const plugin = (file, librarySettings, inputs, otherArguments) => {
}

// If Container .ts|.avi|.mpg|.mpeg set genpts to fix unknown timestamp
if (file.container.toLowerCase() === 'ts' || file.container.toLowerCase() === 'avi' || file.container.toLowerCase() === 'mpg' || file.container.toLowerCase() === 'mpeg') {
if (
file.container.toLowerCase() === 'ts'
|| file.container.toLowerCase() === 'avi'
|| file.container.toLowerCase() === 'mpg'
|| file.container.toLowerCase() === 'mpeg'
) {
genpts = '-fflags +genpts';
}

Expand Down

0 comments on commit 2a76f29

Please sign in to comment.