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