From e24ce40eb8b52ad428dddf96a4223520bac7a52e Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Fri, 3 May 2024 15:45:52 -0700 Subject: [PATCH] Fixed: History with unknown episode Closes #6782 --- frontend/src/Series/History/SeriesHistoryRow.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/Series/History/SeriesHistoryRow.js b/frontend/src/Series/History/SeriesHistoryRow.js index 5b44f93aa..0213d9679 100644 --- a/frontend/src/Series/History/SeriesHistoryRow.js +++ b/frontend/src/Series/History/SeriesHistoryRow.js @@ -86,6 +86,10 @@ class SeriesHistoryRow extends Component { const EpisodeComponent = fullSeries ? SeasonEpisodeNumber : EpisodeNumber; + if (!series || !episode) { + return null; + } + return (