mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-14 01:36:08 -07:00
ESLint
This commit is contained in:
parent
86965bc062
commit
48bc97f93f
1 changed files with 5 additions and 1 deletions
|
|
@ -64,7 +64,11 @@ function plugin(file, librarySettings, inputs) {
|
||||||
|
|
||||||
for (let i = 0; i < file.ffProbeData.streams.length; i += 1) {
|
for (let i = 0; i < file.ffProbeData.streams.length; i += 1) {
|
||||||
const currStream = file.ffProbeData.streams[i];
|
const currStream = file.ffProbeData.streams[i];
|
||||||
if (currStream.codec_type.toLowerCase() === 'audio' && currStream.codec_name === inputs.output_codec && currStream.tags) {
|
if (
|
||||||
|
currStream.codec_type.toLowerCase() === 'audio'
|
||||||
|
&& currStream.codec_name === inputs.output_codec
|
||||||
|
&& currStream.tags
|
||||||
|
) {
|
||||||
if (currStream.tags.COPYRIGHT === 'henk_asac') {
|
if (currStream.tags.COPYRIGHT === 'henk_asac') {
|
||||||
killPlugin = true;
|
killPlugin = true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue