Skip to content

Commit

Permalink
Silly bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
spitfire305 committed Jan 19, 2024
1 parent 74ff1ed commit 7b267c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Services/Families/FamilyTreeService.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ protected function formatEntity(Entity $entity): array
'url' => $entity->url(),
'thumb' => Avatar::entity($entity)->size(40)->fallback()->thumbnail(),
'is_dead' => (bool)$entity->character->is_dead,
'death' => $birth,
'birth' => $death,
'death' => $death,
'birth' => $birth,
'tags' => $tags,
];
}
Expand Down

0 comments on commit 7b267c1

Please sign in to comment.