Skip generic shows from duplicate removal actions (#8370)

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
pull/7840/head
Aaron 2 years ago committed by GitHub
parent a10d0b9530
commit d50c1b2d4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2219,6 +2219,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);
}
}

Loading…
Cancel
Save