https://github.com/Laharah/deluge-FileBotTool/issues/44
Basically, in 4.9.0 filebot now raises errors on arguments that aren't media files. Previously it simply ignored them.
It's not really a bug, the plugin simply hands all the files over to Filebot to let it decide how to handle the files. It seems a reasonable design choice for filebot to get more strict about things. I'm ready to implement file filtering if need be, but I ran into some behavior that wasn't what I was expecting, making me not sure if it's intended or not:
File Structure:
Onward.2020.720p
├── Horrendous filename.to .txt
├── Onward.2020.720p.mkv
├── Onward.2020.720p.srt
└── Win real Money.txt
when executing
Code: Select all
filebot -rename --action test -non-strict Onward.2020.720p/*
However this call:
Code: Select all
filebot -rename --action test -non-strict -r Onward.2020.720p
Obviously I prefer the old behavior (less work for me
