Backport pull request #3730 from jellyfin/release-10.8.z
CardBuilder: Test episode number in addition to episode name Authored-by: SenorSmartyPants <senorsmartypants@gmail.com> Merged-by: Bill Thornton <thornbill@users.noreply.github.com> Original-merge: a38d0bbacc129add961d1e2a9c8b5085f49c0d39
This commit is contained in:
@@ -821,7 +821,7 @@ import { appRouter } from '../appRouter';
|
||||
if (isUsingLiveTvNaming(item)) {
|
||||
lines.push(escapeHtml(item.Name));
|
||||
|
||||
if (!item.EpisodeTitle) {
|
||||
if (!item.EpisodeTitle && !item.IndexNumber) {
|
||||
titleAdded = true;
|
||||
}
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user