Skip to content
Snippets Groups Projects
Commit a343de4c authored by Yassine Doghri's avatar Yassine Doghri
Browse files

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

fixes #444
parent dfd66bee
No related branches found
No related tags found
No related merge requests found
......@@ -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'] : '',
]);
} ?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment