浏览代码

Skip generic shows from duplicate removal actions (#8370)

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
Aaron 2 年之前
父节点
当前提交
d50c1b2d4b
共有 1 个文件被更改,包括 6 次插入0 次删除
  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;
                 }
+                
+                // Skip ShowId without SubKey from duplicate removal actions - https://github.com/jellyfin/jellyfin/issues/5856
+                if (group.Key.EndsWith("0000")) 
+                {
+                    continue;
+                }
 
                 HandleDuplicateShowIds(groupTimers);
             }