If you run hltbService.search('kingdom hearts'), you'll see the one of the results has the name Kingdom Hearts 3582 Days HD 15 Remix.
If you run hltbService.detail(22490), you'll see the name is properly formatted Kingdom Hearts 358/2 Days - HD 1.5 Remix.
The search() function is also stripping accented characters. For example, if you run hltbService.search('pokemon'), it'll return entries with the name field as Pokmon (note the missing 'e').
The detail() function returns the names here properly.
The app I'm building relies on the search() function, so I'd greatly appreciate if you could fix search() stripping all non-alphanumeric characters.
If you run
hltbService.search('kingdom hearts')
, you'll see the one of the results has the nameKingdom Hearts 3582 Days HD 15 Remix
. If you runhltbService.detail(22490)
, you'll see the name is properly formattedKingdom Hearts 358/2 Days - HD 1.5 Remix
.The
search()
function is also stripping accented characters. For example, if you runhltbService.search('pokemon')
, it'll return entries with the name field asPokmon
(note the missing 'e'). Thedetail()
function returns the names here properly.The app I'm building relies on the
search()
function, so I'd greatly appreciate if you could fixsearch()
stripping all non-alphanumeric characters.