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:
parent
77e769a7ef
commit
149e09b523
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue