From 5feb843d730e769aa16d54484ee5b3c0f39b9c62 Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Fri, 8 Aug 2025 07:40:36 -0500 Subject: [PATCH] Add imdb and tmdb links to episodes if available. --- frontend/src/pages/VODs.jsx | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/frontend/src/pages/VODs.jsx b/frontend/src/pages/VODs.jsx index cdf8ca20..e109f993 100644 --- a/frontend/src/pages/VODs.jsx +++ b/frontend/src/pages/VODs.jsx @@ -684,6 +684,42 @@ const SeriesModal = ({ series, opened, onClose }) => { {episode.rating} )} + {/* IMDb and TMDb badges for episode */} + {(episode.imdb_id || displaySeries.tmdb_id) && ( + + + Links + {episode.imdb_id && ( + + IMDb + + )} + {displaySeries.tmdb_id && ( + + TMDb + + )} + + )} {episode.director && (