Jelajahi Sumber

Skip generic shows from duplicate removal actions (#8370)

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
Aaron 2 tahun lalu
induk
melakukan
d50c1b2d4b
1 mengubah file dengan 6 tambahan dan 0 penghapusan
  1. 6 0
      Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs

+ 6 - 0
Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs

@@ -2218,6 +2218,12 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
                 {
                 {
                     continue;
                     continue;
                 }
                 }
+                
+                // Skip ShowId without SubKey from duplicate removal actions - https://github.com/jellyfin/jellyfin/issues/5856
+                if (group.Key.EndsWith("0000")) 
+                {
+                    continue;
+                }
 
 
                 HandleDuplicateShowIds(groupTimers);
                 HandleDuplicateShowIds(groupTimers);
             }
             }