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:
Joshua Boniface 2022-07-20 19:29:50 -04:00
parent 77e769a7ef
commit 149e09b523

View file

@ -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 {