This commit is contained in:
HaveAGitGat 2019-11-30 20:29:40 +00:00
parent d99c811d64
commit 32d6e21b6c
6 changed files with 6 additions and 6 deletions

View file

@ -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
}

View file

@ -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
}

View file

@ -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

View file

@ -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
}

View file

@ -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
}

View file

@ -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
}