mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-02 14:29:11 +02:00
fix(chapters): use episode cover when chapter img is an empty string
fixes #444
This commit is contained in:
parent
dfd66beebf
commit
a343de4cf6
1 changed files with 1 additions and 1 deletions
|
|
@ -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'] : '',
|
||||
]);
|
||||
} ?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue