Skip to content

Commit

Permalink
fix(server): fixed episodes having still images
Browse files Browse the repository at this point in the history
  • Loading branch information
ADRFranklin committed Jun 5, 2024
1 parent 7d930b6 commit 94f2366
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions server/src/resources/show/mapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ export class ShowMapper
episode_number: episode.index,
air_date: episode.airDate || '',
overview: episode.description || '',
still_path: episode.stillPath || '',
})),
})),
created_by:
Expand Down
1 change: 1 addition & 0 deletions server/src/resources/show/response.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export type ShowResponseProps = {
episode_number: number;
air_date: string;
overview: string;
still_path: string;
}>;
}>;
recommendations?: Array<{
Expand Down

0 comments on commit 94f2366

Please sign in to comment.