Account for missing genres in anime collection
This commit is contained in:
parent
a9acf23a15
commit
7b765c6d0b
@ -130,7 +130,12 @@ final class AnimeCollection extends Collection {
|
||||
|
||||
foreach($rows as &$row)
|
||||
{
|
||||
$row['genres'] = $genres[$row['hummingbird_id']];
|
||||
$id = $row['hummingbird_id'];
|
||||
|
||||
$row['genres'] = array_key_exists($id, $genres)
|
||||
? $genres[$id]
|
||||
: [];
|
||||
|
||||
sort($row['genres']);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user