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

fix live tv image

This commit is contained in:
Luke Pulverenti 2015-08-02 22:12:52 -04:00
parent 92861ec8de
commit c65b8a2cf4
3 changed files with 9 additions and 4 deletions

View file

@ -1106,13 +1106,13 @@
if (textlines.length > 1 && verticalTextLines > 1) {
html += '<p>';
html += textlines[1];
html += textlines[1] || '&nbsp;';
html += '</p>';
}
if (textlines.length > 2 && verticalTextLines > 2) {
html += '<p>';
html += textlines[2];
html += textlines[2] || '&nbsp;';
html += '</p>';
}