Filter out titles not in English or Japanese from media cards
All checks were successful
timw4mail/HummingBirdAnimeClient/pipeline/head This commit looks good
All checks were successful
timw4mail/HummingBirdAnimeClient/pipeline/head This commit looks good
This commit is contained in:
parent
6c5dbe886b
commit
1cb880f785
@ -263,8 +263,15 @@ final class Kitsu {
|
||||
|
||||
if (array_key_exists('localized', $titles) && is_array($titles['localized']))
|
||||
{
|
||||
foreach($titles['localized'] as $alternateTitle)
|
||||
foreach($titles['localized'] as $locale => $alternateTitle)
|
||||
{
|
||||
// Really don't care about languages that aren't english
|
||||
// or Japanese for titles
|
||||
if ( ! in_array($locale, ['en', 'en_us', 'en_jp', 'ja_jp']))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
if (self::titleIsUnique($alternateTitle, $valid))
|
||||
{
|
||||
$valid[] = $alternateTitle;
|
||||
|
Loading…
Reference in New Issue
Block a user