Laharah / deluge-FileBotTool

A plugin to integrate simple FileBot functionality into Deluge
GNU General Public License v3.0
114 stars 10 forks source link

Unable to match content via Filebottool #39

Closed generiskk closed 5 years ago

generiskk commented 5 years ago

When using the function: "Dry Run", it keeps "spinning", unable to find any files.

Current settings: image

Anything that is recommended to do to make it work?

generiskk commented 5 years ago

Maybe a good idea to add a debug log... deluge.log

Laharah commented 5 years ago

Thanks for the log. It makes figuring out what's wrong way easier. It looks like your save path got a trailing '/' along the way (those are supposed to be cleaned along the way) It caused the plugin to search for a file with a path at .../torrents/data//Brooklyn... instead of .../torrents/data/Brooklyn.... The plugin has to do a lot of path munging and processing to get everything in the right format and os style and had a bug with those trailing slashes.

I added a patch with 66b8436 so the latest release should fix the issue. If it doesn't, let me know and I can take another crack at it.

generiskk commented 5 years ago

Thank you, I was not aware that my pathing was wrong. Resolved that too just incase, however I am still stuck on "problem with movement matching" deluge.log

Laharah commented 5 years ago

Sorry about that. Long hours on the road made me mess up the code. This release: https://github.com/Laharah/deluge-FileBotTool/releases/tag/1.2.3 should have the proper fix.

generiskk commented 5 years ago

Thank you sir! I will give you feedback when I install it :)

generiskk commented 5 years ago

Works like a dream now! Thank you sir!

Laharah commented 5 years ago

Glad it's working now. Thanks for pointing out the bug!