Hi,
I'm running into an unhandled exception on WG++ 3.1.2 (tested thru 3.1.0) and the imdb mdb processer revision 9 (also 8). As best as I can tell on the first show it finds it throws an exception. I didn't see any warnings or anything useful in the log other than the exception. I've attached the log bundle and guide files, please let me know if you need anything else.
Thanks
I am having the same issue with my MDB setup. Same thing as you - unhandled exception and no logs indicating what happened.
I have attached relevant logs and config.
Me too (also with 3.1.3)
Hi, I will look into it ... Jan
I found the problem ..
In 3.1.1 beta an extra operation was added for the mdb and rex target file composition : max_elements
(This is mostly useful for multi value elements like actor etc)
The implementation of it however is such that that operation must always be there, even if not needed !!
I have corrected it in the coming next beta 3.1.4 but that won't be available as yet.
If you use beta 3.1.3 it can be solved by adding this operation in the mdb.config (or rex.config)
e.g. change this:
{'mdb-title'...}{[plot: 'mdb-plot']\n}'description'{\n[imdb description: 'mdb-description[max_sentences=2]']}
into this:
{'mdb-title'...}{[plot: 'mdb-plot']\n}'description'{\n[imdb description: 'mdb-description[max_elements=1,max_sentences=2]']}
P.S. I noticed this for select :
selectserie duration="25" minumum="2" musthave="title, sub-title, episode-num" optional=""/
It is better to use
selectserie duration="25" minumum="2" musthave="title" optional="sub-title, episode-num"/
or just simply defaults (because that's the same) :
Also .. mat8861 made an improved version of imdb.com.ask_series.ini .. rev 10
Thanks that seems to solve the problems!
I only see rev 9 on github, do you know where 10 is?
Thanks!
right after you posted...https://github.com/SilentButeo2/webgrabplus-siteinipack/blob/master/site...