From d50c1b2d4bc0c85428671b288adef1b336da1156 Mon Sep 17 00:00:00 2001 From: Aaron Date: Mon, 10 Oct 2022 17:25:49 -0300 Subject: [PATCH] Skip generic shows from duplicate removal actions (#8370) Co-authored-by: Claus Vium --- Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs b/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs index 4da6776369..3db422c2f0 100644 --- a/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs +++ b/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs @@ -2218,6 +2218,12 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV { continue; } + + // Skip ShowId without SubKey from duplicate removal actions - https://github.com/jellyfin/jellyfin/issues/5856 + if (group.Key.EndsWith("0000")) + { + continue; + } HandleDuplicateShowIds(groupTimers); }