1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

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: a38d0bbacc
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)) { if (isUsingLiveTvNaming(item)) {
lines.push(escapeHtml(item.Name)); lines.push(escapeHtml(item.Name));
if (!item.EpisodeTitle) { if (!item.EpisodeTitle && !item.IndexNumber) {
titleAdded = true; titleAdded = true;
} }
} else { } else {