Closed DariusIII closed 3 years ago
That it works fine on theTVDb is no surprise, it's not parsed into a data class over there :)
Looks like some field in one of the models isn't set correctly, or the returned information structure deviates from the models they gave.
I'm looking into it and will let you know when I fixed it.
Found it...
Models says:
translations: [TranslationSimple]
TranslationsSimple { language: string }
So, the normalizer expects JSON like this:
"translations": [{"language": "Translation in Dutch"}, {"language": "Translation in French"}]
What we get back though is:
"translations": {
"ara": "السهم",
"bul": "Стрелата",
"ces": "Arrow",
"dan": "Arrow",
"deu": "Arrow",
"ell": "Arrow",
"eng": "Arrow",
"est": "Vibukütt",
"fin": "Arrow",
"fra": "Arrow",
"heb": "החץ",
"hun": "A zöld íjász",
"ita": "Arrow",
"kor": "애로우",
"lit": "Arrow",
"nld": "Arrow",
"pol": "Arrow",
"por": "Arrow",
"pt": "Arqueiro",
"rus": "Стрела",
"spa": "Arrow",
"swe": "Arrow",
"tur": "Ok",
"zho": "綠箭俠"
}
I'll find a better method for those translations then...
2.0.8 should fix your issue :tada:
Issue has been fixed. Thank you!
If you notice other things, don't hesitate to open new issues :)
I am trying to implement V4 API but i have hit a wall with simple search. When i do:
Auth is fine and token is set.
Next thing is:
Issue begins here, as i receive the following error:
Testing on TheTVDB swagger works properly.