Skip to content

Commit

Permalink
fix(server): videos were not correctly formatted for frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
ADRFranklin committed Jun 5, 2024
1 parent d390e2f commit 04dad20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/services/show/provider/tmdb/tmdb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ export class TmdbShowProvider implements ShowProvider {
trailers: show.videos.results
.filter(
(video) =>
video.site === 'Youtube' &&
video.site === 'YouTube' &&
video.type === 'Trailer' &&
is.truthy(video.key),
)
Expand Down

0 comments on commit 04dad20

Please sign in to comment.