aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron <aaron@boeker.ca>2022-10-10 17:25:49 -0300
committerGitHub <noreply@github.com>2022-10-10 22:25:49 +0200
commitd50c1b2d4bc0c85428671b288adef1b336da1156 (patch)
tree360d479e51bf47d114ddb25fe08df459b25ffaef
parenta10d0b953000d8251b36831f2c0940cd42d953d6 (diff)
Skip generic shows from duplicate removal actions (#8370)
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
-rw-r--r--Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs b/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs
index 4da677636..3db422c2f 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);
}