fix(chapters): use episode cover when chapter img is an empty string

fixes #444
This commit is contained in:
Yassine Doghri 2024-02-21 14:14:29 +00:00
parent dfd66beebf
commit a343de4cf6
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
echo view('episode/_partials/chapter', [
'title' => array_key_exists('title', $chapter) ? $chapter['title'] : '',
'startTime' => format_duration($chapter['startTime']),
'chapterImgUrl' => array_key_exists('img', $chapter) ? $chapter['img'] : $episode->cover->thumbnail_url,
'chapterImgUrl' => array_key_exists('img', $chapter) && $chapter['img'] !== '' ? $chapter['img'] : $episode->cover->thumbnail_url,
'chapterUrl' => array_key_exists('url', $chapter) ? $chapter['url'] : '',
]);
} ?>