mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-09 15:38:19 -07:00
Err
This commit is contained in:
parent
d99c811d64
commit
32d6e21b6c
6 changed files with 6 additions and 6 deletions
|
|
@ -28,7 +28,7 @@ function remuxContainer(file, container) {
|
|||
} catch (err) {
|
||||
var response = {
|
||||
processFile: false,
|
||||
note:`library.actions.remuxContainer error: ${err.stack} \\n`
|
||||
note:`library.actions.remuxContainer error: ${err} \\n`
|
||||
}
|
||||
return response
|
||||
}
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ function filterByAge(file, ageCutOff_Seconds) {
|
|||
} catch (err) {
|
||||
var response = {
|
||||
outcome: false,
|
||||
note: `library.filters.filterByAge error: ${err.stack} \\n`
|
||||
note: `library.filters.filterByAge error: ${err} \\n`
|
||||
}
|
||||
return response
|
||||
}
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ function filterByCodec(file, mode, codecs) {
|
|||
|
||||
var response = {
|
||||
outcome: false,
|
||||
note: `library.filters.filterByCodec error: ${err.stack} \\n`
|
||||
note: `library.filters.filterByCodec error: ${err} \\n`
|
||||
}
|
||||
return response
|
||||
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ function filterByMedium(file, medium) {
|
|||
} catch (err) {
|
||||
var response = {
|
||||
outcome: false,
|
||||
note: `library.filters.filterByMedium error: ${err.stack} \\n`
|
||||
note: `library.filters.filterByMedium error: ${err} \\n`
|
||||
}
|
||||
return response
|
||||
}
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ function filterByResolution(file, mode, resolution) {
|
|||
} catch (err) {
|
||||
var response = {
|
||||
outcome: false,
|
||||
note: `library.filters.filterByResolution error: ${err.stack} \\n`
|
||||
note: `library.filters.filterByResolution error: ${err} \\n`
|
||||
}
|
||||
return response
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ function filterBySize(file, lowerBound, upperBound) {
|
|||
} catch (err) {
|
||||
var response = {
|
||||
outcome: false,
|
||||
note: `library.filters.filterBySize error: ${err.stack} \\n`
|
||||
note: `library.filters.filterBySize error: ${err} \\n`
|
||||
}
|
||||
return response
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue