Page 1 of 1

Problem with 1 specific show in Chinese

Posted: 31 Aug 2022, 13:55
by lishan89

Code: Select all

Invalid Lookup: null [tv/79481/season/6]
Everything was working fine until someone over at TheMovieDB decided to change the episode naming scheme for "斗破苍穹", but every time I try to match to this show in Chinese it shows the above error. This is working fine in English matching to "Fights Break Sphere"

Re: Problem with 1 specific show in Chinese

Posted: 31 Aug 2022, 14:50
by rednoah
You can always enter the numeric ID instead of the series name if lookup by name doesn't work for one reason or another. Please read FAQ #2 for details.


e.g. English works:

Code: Select all

$ filebot -list --db TheMovieDB::TV --q "Fights Break Sphere"
Fights Break Sphere - 1x01 - Episode 1
...

e.g. Chinese works:

Code: Select all

$ filebot -list --db TheMovieDB::TV --q 斗破苍穹 --lang zh-CN
斗破苍穹 - 1x01 - 悔婚
...

:?: Can you provide a test case that doesn't work? Does the same test case not work for you?

Re: Problem with 1 specific show in Chinese

Posted: 31 Aug 2022, 18:21
by lishan89
rednoah wrote: 31 Aug 2022, 14:50 You can always enter the numeric ID instead of the series name if lookup by name doesn't work for one reason or another. Please read FAQ #2 for details.

:?: Can you provide a test case that doesn't work? Does the same test case not work for you?
Initially I got this.

Code: Select all

% filebot -list --db TheMovieDB::TV --q "Fights Break Sphere"
No episodes found
However, thank you so much for you link to the FAQ #2. I didn't realize filebot kept a local cache. After reading the FAQ and clearing the cache, it is worked! Again thank you very much!