Update Tdarr_Plugin_bbbb_Filter_Example.js

This commit is contained in:
HaveAGitGat 2021-02-14 17:23:54 +01:00 committed by GitHub
parent 9e1e732fcd
commit f479522456
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,7 @@ module.exports.plugin = function plugin(file) {
for (let i = 0; i < keywords.length; i += 1) {
if (file.file.includes(keywords[i])) {
response.processFile = false;
response.infoLog += `Filter preventing processing. File title contains key word ${keywords[i]}`;
response.infoLog += `Filter preventing processing. File title contains keyword ${keywords[i]}`;
break;
}
}