mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #3730 from SenorSmartyPants/CardbuilderEpisodeWithNoName
CardBuilder: Test episode number in addition to episode name
This commit is contained in:
commit
a38d0bbacc
1 changed files with 1 additions and 1 deletions
|
@ -820,7 +820,7 @@ import ServerConnections from '../ServerConnections';
|
||||||
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