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

limit transcoding to level 41

This commit is contained in:
Luke Pulverenti 2016-09-07 22:55:54 -04:00
parent 1eb2690523
commit 4229e36361
15 changed files with 33 additions and 38 deletions

View file

@ -851,7 +851,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo
if (options.showCurrentProgram && item.Type == 'TvChannel') {
if (item.CurrentProgram) {
lines.push(itemHelper.getDisplayName(item.CurrentProgram));
lines.push(item.CurrentProgram.Name);
} else {
lines.push('');
}