mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 18:54:58 +00:00
Fixed episode image failing to load.
This commit is contained in:
parent
11f54f3cda
commit
ad774db59e
1 changed files with 1 additions and 1 deletions
|
|
@ -417,7 +417,7 @@ class SeriesViewSet(viewsets.ReadOnlyModelViewSet):
|
|||
'rating': episode.rating,
|
||||
'tmdb_id': episode.tmdb_id,
|
||||
'imdb_id': episode.imdb_id,
|
||||
'movie_image': episode_relation.custom_properties.get("info", {}).get('info', {}).get('movie_image') if episode_relation and episode_relation.custom_properties else None,
|
||||
'movie_image': episode.custom_properties.get('movie_image', '') if episode.custom_properties else '',
|
||||
'container_extension': episode_relation.container_extension if episode_relation else 'mp4',
|
||||
'type': 'episode',
|
||||
'series': {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue