1
0
Fork 0
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:
Bill Thornton 2022-07-02 00:30:31 -04:00 committed by GitHub
commit a38d0bbacc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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