German + English does not work

Any questions? Need some help?
Post Reply
Chrompower
Posts: 4
Joined: 06 Jul 2014, 15:22

German + English does not work

Post by Chrompower »

Hello Guys!

I am not able to set Filebot so that it puts English + German Episode-Title to the Filename.
Using this Code:
{e.pad(2)} - {t} - {def db = net.sourceforge.filebot.WebServices.TheTVDB; db.getEpisodeList(db.search(n)[0], null, Locale.ENGLISH).find{ episode.season == it.season && episode.episode == it.episode}.title}

Filebot only gives me the {t} (in English / German, depends wich preference language I am using) - but not the English Episode-Name.
It says "BindingException "net": undefined" and it looks like this:
"01 - Pilot - "

Could an expert help me please? What can I do?

Best Regards
Chrompower
User avatar
rednoah
The Source
Posts: 23934
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: German + English does not work

Post by rednoah »

Things have changed.

Here's a hint:

Code: Select all

{e.pad(2)} - {t} - {database.getEpisodeList(series, null, Locale.GERMAN).find{ episode.numbers == it.numbers }.title}
:idea: Please read the FAQ and How to Request Help.
Chrompower
Posts: 4
Joined: 06 Jul 2014, 15:22

Re: German + English does not work

Post by Chrompower »

works great, thank you!
Post Reply