diff options
| author | Aaron <aaron@boeker.ca> | 2022-10-10 17:25:49 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-10 22:25:49 +0200 |
| commit | d50c1b2d4bc0c85428671b288adef1b336da1156 (patch) | |
| tree | 360d479e51bf47d114ddb25fe08df459b25ffaef | |
| parent | a10d0b953000d8251b36831f2c0940cd42d953d6 (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.cs | 6 |
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); } |
