File creation date is too far in the past!?
Posted: 25 Aug 2016, 09:23
I had downloaded some movies many months ago and now wanted to find subtitles for them all;
I run the script:
However, I then get an error:
"File creation date is too far in the past"
I therefore run this script:instead:
Now I get this error instead:
"Your maxAgeDays limit (300) is unreasonable"
To solve this, would I download the groovy script and modify this line:to
(no complaints if creation date <300 days) ??
For this to work, I would then need to put the modified groovy script in my Filebot directory, right?
I run the script:
Code: Select all
start filebot.cmd -script fn:suball "P:\Ultimate_Server\Movies" -non-strict
However, I then get an error:
"File creation date is too far in the past"
I therefore run this script:instead:
Code: Select all
start filebot.cmd -script fn:suball "P:\Ultimate_Server\Movies" -non-strict --def maxAgeDays=300
"Your maxAgeDays limit (300) is unreasonable"
To solve this, would I download the groovy script and modify this line:
Code: Select all
if (maxAgeDaysLimit && (maxAgeDays == null || maxAgeDays.toDouble() > 30)) {
return ignore(f, "Your maxAgeDays limit ($maxAgeDays) is unreasonable")
Code: Select all
if (maxAgeDaysLimit && (maxAgeDays == null || maxAgeDays.toDouble() > 300)) {
return ignore(f, "Your maxAgeDays limit ($maxAgeDays) is unreasonable")
For this to work, I would then need to put the modified groovy script in my Filebot directory, right?