From 4ee0ae1418d01538ef52f6440e5f96a36b61bb1d Mon Sep 17 00:00:00 2001 From: Bogdan Date: Tue, 2 Jul 2024 05:31:58 +0300 Subject: [PATCH] Fixed: History with unknown series --- frontend/src/Activity/History/HistoryRow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Activity/History/HistoryRow.js b/frontend/src/Activity/History/HistoryRow.js index 2b19e6970..507fdc2d7 100644 --- a/frontend/src/Activity/History/HistoryRow.js +++ b/frontend/src/Activity/History/HistoryRow.js @@ -77,7 +77,7 @@ class HistoryRow extends Component { onMarkAsFailedPress } = this.props; - if (!episode) { + if (!series || !episode) { return null; }